replaced make with $MAKE

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6623 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2000-03-11 16:38:01 +00:00
parent aa5e1f75d9
commit 451868847b
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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