rev 287 - trunk
SVN User <[email protected]>
| Newsgroups | gmane.comp.lang.prothon.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: bcollins Date: 2004-04-05 10:54:41 -0400 (Mon, 05 Apr 2004) New Revision: 287 Modified: trunk/Makefile.in Log: Force all top level targets. MacOSX seemed to have a problem doing the "install" target, claiming it was already up-to-date. Modified: trunk/Makefile.in =================================================================== --- trunk/Makefile.in 2004-04-05 14:52:37 UTC (rev 286) +++ trunk/Makefile.in 2004-04-05 14:54:41 UTC (rev 287) @@ -4,14 +4,16 @@ SUBDIRS = src modules -all install clean: +all install clean: FORCE @set -e; for subdir in $(SUBDIRS); do \ $(MAKE) -C $$subdir $@; \ done -distclean: +distclean: FORCE @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: