From 8343f2a68762b257c890b0a80464e4a6e1155f9e Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 12 Dec 2000 14:24:04 -0500 Subject: [svn-r3115] Purpose: Doh! Description: When adding the examples directory to the testing, forgot to remove it from the other scripts in the makefile since it would then be run twice. Solution: Removed it (saved the old code) Platforms tested: Hey! Trust me :) --- c++/Makefile.in | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/c++/Makefile.in b/c++/Makefile.in index d7d6558..12b8ac6 100644 --- a/c++/Makefile.in +++ b/c++/Makefile.in @@ -72,8 +72,9 @@ lib progs check test _test uninstall: (cd $$d && $(MAKE) $@) || exit 1; \ done +## @@SETX@; for d in $(SUBDIRS) examples; do \ tests TAGS dep depend: - @@SETX@; for d in $(SUBDIRS) examples; do \ + @@SETX@; for d in $(SUBDIRS); do \ (cd $$d && $(MAKE) $@) || exit 1; \ done @@ -86,14 +87,16 @@ install: .PHONY: all lib progs test _test install uninstall dep depend clean \ mostlyclean distclean maintainer-clean +## @@SETX@; for d in $(SUBDIRS) examples; do \ clean mostlyclean: - @@SETX@; for d in $(SUBDIRS) examples; do \ + @@SETX@; for d in $(SUBDIRS); do \ (cd $$d && $(MAKE) $@); \ done -$(RM) conftest conftest.c +## @@SETX@; for d in $(SUBDIRS) examples; do \ distclean: - @@SETX@; for d in $(SUBDIRS) examples; do \ + @@SETX@; for d in $(SUBDIRS); do \ (cd $$d && $(MAKE) $@); \ done -$(RM) config/commence config/conclude -- cgit v0.12