netboot/zipl: use '$(MAKE)' instead of 'make'

Use '$(MAKE)' to pass down the makefile flags.

This fixes the warning:

make[4]: warning: jobserver unavailable: using -j1.  Add '+' to parent make rule.

Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Reviewed-by: Philipp Rudo <prudo@linux.ibm.com>
Reviewed-by: Jan Hoeppner <hoeppner@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
This commit is contained in:
Marc Hartmayer
2019-11-20 13:01:35 +01:00
committed by Jan Höppner
parent 3d74c534bf
commit efcfbce386
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -45,10 +45,10 @@ clean:
.boot.o.d boot.o: ../boot/data.h
../boot/data.h:
make -C ../boot data.h
$(MAKE) -C ../boot data.h
../boot/data.o:
make -C ../boot data.o
$(MAKE) -C ../boot data.o
../boot/stage3.bin:
make -C ../boot stage3.bin
$(MAKE) -C ../boot stage3.bin