diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-12 19:24:04 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-12 19:24:04 (GMT) |
commit | 8343f2a68762b257c890b0a80464e4a6e1155f9e (patch) | |
tree | 700343861b1f840e900a8ce889f055cb04fb785f /c++/Makefile.in | |
parent | 84fadb9f74741dc53a07a8780d6d1f03c728e213 (diff) | |
download | hdf5-8343f2a68762b257c890b0a80464e4a6e1155f9e.zip hdf5-8343f2a68762b257c890b0a80464e4a6e1155f9e.tar.gz hdf5-8343f2a68762b257c890b0a80464e4a6e1155f9e.tar.bz2 |
[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 :)
Diffstat (limited to 'c++/Makefile.in')
-rw-r--r-- | c++/Makefile.in | 9 |
1 files 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 |