From: Matthias Andree Date: Fri, 1 Aug 2003 13:09:15 +0000 (+0200) Subject: Use $(MAKE) rather than hardcoded "make", to aid build process on X-Git-Tag: E2FSPROGS-1_35-WIP-0801~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ec1b153ba6291aac5faa00c197a71d1cb0165f5;p=thirdparty%2Fe2fsprogs.git Use $(MAKE) rather than hardcoded "make", to aid build process on systems that expect GNU make as "gmake". --- diff --git a/Makefile.in b/Makefile.in index 7eb1bbc94..d86f9231e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -26,7 +26,7 @@ all:: subs $(MAKE) docs subs: - for i in $(SUBS) ; do if test -d `dirname $$i` ; then make $$i ; fi ; done + for i in $(SUBS) ; do if test -d `dirname $$i` ; then $(MAKE) $$i ; fi ; done progs: subs all-progs-recursive libs: subs all-libs-recursive