From: Ben Pfaff Date: Sat, 12 Feb 2011 18:19:28 +0000 (-0800) Subject: Makefile: Use $(MAKE) instead of plain 'make'. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=commitdiff_plain;h=b14dfcf89212916f3098150131162b7f3e9ae190 Makefile: Use $(MAKE) instead of plain 'make'. This allows make to pass the proper command line arguments to the sub-make. --- diff --git a/Makefile b/Makefile index 2c374e7..fbc8f4e 100644 --- a/Makefile +++ b/Makefile @@ -10,4 +10,4 @@ distclean:: clean find . -name '*~' -exec rm '{}' \; check:: - make -C tests $@ + $(MAKE) -C tests $@