diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-08 22:17:40 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-03-08 22:17:40 (GMT) |
commit | f9ea3ed89b1b2018bbcfe2cfcc4068a98de57bb5 (patch) | |
tree | c5098bd28ab077955f90337d6674a77f4a61a1e2 /c++/Makefile.in | |
parent | b8bb807e1a109600893630f3e17162e4e0ebae5a (diff) | |
download | hdf5-f9ea3ed89b1b2018bbcfe2cfcc4068a98de57bb5.zip hdf5-f9ea3ed89b1b2018bbcfe2cfcc4068a98de57bb5.tar.gz hdf5-f9ea3ed89b1b2018bbcfe2cfcc4068a98de57bb5.tar.bz2 |
[svn-r3578] Purpose:
Update
Description:
Removed `examples/' subdirectory as one of the ones to test since we
have "real" tests now
Platforms tested:
Linux
Diffstat (limited to 'c++/Makefile.in')
-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? |