05394a18d4
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3344 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
23 lines
408 B
Makefile
23 lines
408 B
Makefile
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
|
|
|
|
|
|
|
|
|