summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2001-12-30 22:36:01 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2001-12-30 22:36:01 (GMT)
commitb86f8fd78c603eb2fb9c5a20791241fb8a1bd43d (patch)
treef179097223d147e12049171ae09b34cb9836b9e7
parentc157e849eda9e347faa6602d47aabb425a249d67 (diff)
downloadhdf5-b86f8fd78c603eb2fb9c5a20791241fb8a1bd43d.zip
hdf5-b86f8fd78c603eb2fb9c5a20791241fb8a1bd43d.tar.gz
hdf5-b86f8fd78c603eb2fb9c5a20791241fb8a1bd43d.tar.bz2
[svn-r4760] Purpose:
Bug fix Description: The "make depend" command wasn't propagating down into the tools/ directories. Solution: Added the "depend:" part to the Makefile in the tools/ subdirectory. (duplicated what Bill did to v1.5) Platforms tested: Linux
-rw-r--r--tools/Makefile.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in
index 64653a6..3dddd6c 100644
--- a/tools/Makefile.in
+++ b/tools/Makefile.in
@@ -44,6 +44,11 @@ progs: $(LIBTOOLS) $(LIBHDF5)
(cd $$d && $(MAKE) $@) || exit 1; \
done
+dep depend:
+ @@SETX@; for d in lib $(SUBDIRS); do \
+ (cd $$d && $(MAKE) $@) || exit 1; \
+ done
+
check tests test _test: $(PROGS)
@@SETX@; for d in lib $(SUBDIRS); do \
(cd $$d && $(MAKE) $@) || exit 1; \
@@ -64,7 +69,7 @@ install-doc:
(cd $$d && $(MAKE) $@); \
done
-.PHONY: all lib progs test _test install uninstall dep depend clean \
+.PHONY: all lib progs test _test install uninstall clean \
mostlyclean distclean maintainer-clean
clean mostlyclean: