diff options
-rw-r--r-- | c++/Makefile.in | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/c++/Makefile.in b/c++/Makefile.in index 9da76fe..25034ce 100644 --- a/c++/Makefile.in +++ b/c++/Makefile.in @@ -17,7 +17,7 @@ srcdir=@srcdir@ # Subdirectories in build-order (not including `examples') # We include examples now since those are our "tests" at this time. We # can remove it later. -SUBDIRS=src test examples +SUBDIRS=src test ############################################################################## ## T A R G E T S @@ -72,9 +72,8 @@ 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); do \ + @@SETX@; for d in $(SUBDIRS) examples; do \ (cd $$d && $(MAKE) $@) || exit 1; \ done @@ -87,17 +86,15 @@ 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); do \ - (cd $$d && $(MAKE) $@); \ + @@SETX@; for d in $(SUBDIRS) examples; do \ + (cd $$d && $(MAKE) $@); \ done -$(RM) conftest conftest.c -## @@SETX@; for d in $(SUBDIRS) examples; do distclean: - @@SETX@; for d in $(SUBDIRS); do \ - (cd $$d && $(MAKE) $@); \ + @@SETX@; for d in $(SUBDIRS) examples; do \ + (cd $$d && $(MAKE) $@); \ done -$(RM) config/commence config/conclude -$(RM) config/stamp1 config/stamp2 config/depend? |