From b14dfcf89212916f3098150131162b7f3e9ae190 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sat, 12 Feb 2011 10:19:28 -0800 Subject: [PATCH] Makefile: Use $(MAKE) instead of plain 'make'. This allows make to pass the proper command line arguments to the sub-make. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 $@ -- 2.30.2