*** Makefile~ Mon May 11 09:01:41 2009 --- Makefile Tue Jun 2 21:38:12 2009 *************** *** 30,48 **** all: $(SUBDIRS) $(SUBDIRS):: ! make BOOST_DIR="$(BOOST_DIR)" LIBBOOST_SUFFIX="$(LIBBOOST_SUFFIX)" CXXFLAGS="$(OPTIMIZE)" -C $@ depend: for subdir in $(SUBDIRS) ; do \ if test -d $$subdir ; then \ ! make BOOST_DIR="$(BOOST_DIR)" LIBBOOST_SUFFIX="$(LIBBOOST_SUFFIX)" depend -C $$subdir; \ fi ; \ done \ clean: for subdir in $(SUBDIRS) ; do \ if test -d $$subdir ; then \ ! make clean -C $$subdir ; \ fi ; \ done \ --- 30,48 ---- all: $(SUBDIRS) $(SUBDIRS):: ! $(MAKE) BOOST_DIR="$(BOOST_DIR)" LIBBOOST_SUFFIX="$(LIBBOOST_SUFFIX)" CXXFLAGS="$(OPTIMIZE)" -C $@ depend: for subdir in $(SUBDIRS) ; do \ if test -d $$subdir ; then \ ! $(MAKE) BOOST_DIR="$(BOOST_DIR)" LIBBOOST_SUFFIX="$(LIBBOOST_SUFFIX)" depend -C $$subdir; \ fi ; \ done \ clean: for subdir in $(SUBDIRS) ; do \ if test -d $$subdir ; then \ ! $(MAKE) clean -C $$subdir ; \ fi ; \ done \