made makefile more robust

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6830 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ron Lee
2000-03-18 20:22:18 +00:00
parent 1bd59dddc3
commit 99ad02720b

View File

@@ -2,13 +2,11 @@
# Makefile : Builds wxWindows contrib src for Unix. # Makefile : Builds wxWindows contrib src for Unix.
# #
CONTRIB_SUBDIRS=ogl mmedia stc
all: all:
cd ogl; make @for d in $(CONTRIB_SUBDIRS); do (cd $$d && $(MAKE)); done
cd mmedia; make
cd stc; make
clean: clean:
cd ogl; make clean @for d in $(CONTRIB_SUBDIRS); do (cd $$d && $(MAKE) clean); done
cd mmedia; make clean
cd stc; make clean