Makefile: Use $(MAKE) instead of plain 'make'.
authorBen Pfaff <blp@cs.stanford.edu>
Sat, 12 Feb 2011 18:19:28 +0000 (10:19 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Sat, 12 Feb 2011 18:25:31 +0000 (10:25 -0800)
This allows make to pass the proper command line arguments to the sub-make.

Makefile

index 2c374e72bf33b40f32c6476d6b5013a6258910db..fbc8f4ec8e372c5a224ad1698a03a625bbeeb271 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -10,4 +10,4 @@ distclean:: clean
        find . -name '*~' -exec rm '{}' \;
 
 check::
-       make -C tests $@
+       $(MAKE) -C tests $@