From: Vadim Zeitlin Date: Sat, 11 Mar 2000 16:38:01 +0000 (+0000) Subject: replaced make with $MAKE X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/451868847b615d4159a20fa138f6316207207e65 replaced make with $MAKE git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6623 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/demos/Makefile.in b/demos/Makefile.in index e3dd5a55ed..4da28190c5 100644 --- a/demos/Makefile.in +++ b/demos/Makefile.in @@ -5,7 +5,7 @@ DEMOS_SUBDIRS=bombs dbbrowse forty fractal life poem all: - @for d in $(DEMOS_SUBDIRS); do (cd $$d && make); done + @for d in $(DEMOS_SUBDIRS); do (cd $$d && $(MAKE)); done clean: - @for d in $(DEMOS_SUBDIRS); do (cd $$d && make clean); done + @for d in $(DEMOS_SUBDIRS); do (cd $$d && $(MAKE) clean); done diff --git a/samples/Makefile.in b/samples/Makefile.in index dd53108fc4..f059382a04 100644 --- a/samples/Makefile.in +++ b/samples/Makefile.in @@ -5,7 +5,7 @@ SAMPLES_SUBDIRS=@SAMPLES_SUBDIRS@ all: - @for d in $(SAMPLES_SUBDIRS); do (cd $$d && make); done + @for d in $(SAMPLES_SUBDIRS); do (cd $$d && $(MAKE)); done clean: - @for d in $(SAMPLES_SUBDIRS); do (cd $$d && make clean); done + @for d in $(SAMPLES_SUBDIRS); do (cd $$d && $(MAKE) clean); done