diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2001-08-14 21:45:55 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2001-08-14 21:45:55 (GMT) |
commit | 376dc591212e13703d98d8549d77ab3d7daba387 (patch) | |
tree | 16aacabd18b03bdce5dbe93fb65598ebc50b5aab /Makefile.in | |
parent | f24035e12fef0d011f38b91da027a18207a6226b (diff) | |
download | hdf5-376dc591212e13703d98d8549d77ab3d7daba387.zip hdf5-376dc591212e13703d98d8549d77ab3d7daba387.tar.gz hdf5-376dc591212e13703d98d8549d77ab3d7daba387.tar.bz2 |
[svn-r4353] Purpose:
Bug fix
Description:
Moved the position of the target of perform so that it is
included in compiling but not in the 'check' target.
Platforms tested:
eirene.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index bf790f0..a6f37df 100644 --- a/Makefile.in +++ b/Makefile.in @@ -14,7 +14,7 @@ srcdir=@srcdir@ @COMMENCE@ # Subdirectories in build-order (not including `examples') -SUBDIRS=src test tools @TESTPARALLEL@ perform @subdirs@ +SUBDIRS=src test tools @TESTPARALLEL@ @subdirs@ ############################################################################## ## T A R G E T S @@ -61,7 +61,7 @@ lib progs check test _test uninstall: done tests TAGS dep depend: - @@SETX@; for d in $(SUBDIRS) examples; do \ + @@SETX@; for d in $(SUBDIRS) perform examples; do \ (cd $$d && $(MAKE) $@) || exit 1; \ done @@ -88,13 +88,13 @@ H5Tinit.c: mostlyclean distclean maintainer-clean clean mostlyclean: - @@SETX@; for d in $(SUBDIRS) doc examples pablo; do \ + @@SETX@; for d in $(SUBDIRS) doc perform examples pablo; do \ (cd $$d && $(MAKE) $@); \ done -$(RM) conftest conftest.c distclean: - @@SETX@; for d in $(SUBDIRS) doc examples pablo; do \ + @@SETX@; for d in $(SUBDIRS) doc perform examples pablo; do \ (cd $$d && $(MAKE) $@); \ done -$(RM) config/commence config/conclude @@ -106,7 +106,7 @@ distclean: maintainer-clean: @echo "This target is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." - @@SETX@; for d in $(SUBDIRS) doc examples pablo; do \ + @@SETX@; for d in $(SUBDIRS) doc perform examples pablo; do \ (cd $$d && $(MAKE) $@); \ done -$(RM) config.cache config.log config.status src/H5config.h |