gadget0: allow parallel submake

allows "make -j10" work properly
This commit is contained in:
Karl Palsson 2019-06-28 21:11:06 +00:00
parent 8b4d952629
commit 7c24f0f837
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ all: $(GZ_ALL:=.all)
clean: $(GZ_ALL:=.clean)
%.all:
make -f $* all
$(MAKE) -f $* all
%.clean:
make -f $* clean
$(MAKE) -f $* clean