started adding modules tree...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3344 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Harco de Hilster
1999-08-11 17:09:18 +00:00
parent bed9b80689
commit 05394a18d4
3 changed files with 192 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
SUBDIRS = html lseditor glcanvas
all:
-for i in $(SUBDIRS); do \
if test ! -r $$i/Makefile ; then \
make -C $$i -f Makefile.pre.in boot ; \
fi ; \
make -C $$i; \
done
# Generic target for i.e. install, clean, distclean...
%:
-for i in $(SUBDIRS); do \
if test ! -r $$i/Makefile ; then \
make -C $$i -f Makefile.pre.in boot ; \
fi ; \
make -C $$i $@; \
done