make regen: fix: use $(MAKE) instead of make

On FreeBSD, we use gmake, so calling 'make -C ...' won't work here.
We need to invoke $(MAKE) so gmake is used again.

Change-Id: If8d09889db2c101eca66675fff8f820d6d1d7a65
This commit is contained in:
Neels Hofmeyr 2016-07-11 21:26:19 +02:00
parent c23146e7f1
commit fef2e86003
1 changed files with 3 additions and 3 deletions

View File

@ -58,6 +58,6 @@ osmo_hnbgw_LDADD = $(OSMOCORE_LIBS) $(OSMOVTY_LIBS) $(OSMOGSM_LIBS) \
regen: regenerate-from-asn1-source
regenerate-from-asn1-source:
make -C hnbap regen
make -C ranap regen
make -C rua regen
$(MAKE) -C hnbap regen
$(MAKE) -C ranap regen
$(MAKE) -C rua regen