rev 181 - in trunk: . modules
SVN User <[email protected]>
| Newsgroups | gmane.comp.lang.prothon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: bcollins Date: 2004-03-28 09:15:06 -0500 (Sun, 28 Mar 2004) New Revision: 181 Modified: trunk/Makefile.in trunk/modules/Makefile.in Log: Small build cleanup. Modified: trunk/Makefile.in =================================================================== --- trunk/Makefile.in 2004-03-28 13:55:13 UTC (rev 180) +++ trunk/Makefile.in 2004-03-28 14:15:06 UTC (rev 181) @@ -4,17 +4,14 @@ SUBDIRS = src modules -all install clean: FORCE - @for subdir in $(SUBDIRS); do \ +all install clean: + @set -e; for subdir in $(SUBDIRS); do \ $(MAKE) -C $$subdir $@; \ done -distclean: FORCE - @for subdir in $(SUBDIRS); do \ +distclean: + @set -e; for subdir in $(SUBDIRS); do \ $(MAKE) -C $$subdir $@; \ done rm -f config.log config.status Makefile config.cache \ include/config.h Rules.mk libtool - - -FORCE: Modified: trunk/modules/Makefile.in =================================================================== --- trunk/modules/Makefile.in 2004-03-28 13:55:13 UTC (rev 180) +++ trunk/modules/Makefile.in 2004-03-28 14:15:06 UTC (rev 181) @@ -9,25 +9,23 @@ MODULES = Dict File Float List String Tuple -HAVE_BOOST_REGEX = @HAVE_BOOST_REGEX@ - -ifeq ($(HAVE_BOOST_REGEX),yes) +ifeq (@HAVE_BOOST_REGEX@,yes) MODULES += Re endif all clean: - @for subdir in $(MODULES); do \ + @set -e; for subdir in $(MODULES); do \ $(MAKE) -C $$subdir $@; \ done install: $(INSTALL_DIR) $(DESTDIR)$(PROTHON_DEFAULT_MODDIR) - @for subdir in $(MODULES); do \ + @set -e; for subdir in $(MODULES); do \ $(MAKE) -C $$subdir $@; \ done -distclean: clean - @for subdir in $(MODULES); do \ +distclean: + @set -e; for subdir in $(MODULES); do \ $(MAKE) -C $$subdir $@; \ done rm -f Makefile