Commit 0ec1b153 authored by Matthias Andree's avatar Matthias Andree
Browse files

Use $(MAKE) rather than hardcoded "make", to aid build process on

systems that expect GNU make as "gmake".
parent 44104b2b
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment