From b86f8fd78c603eb2fb9c5a20791241fb8a1bd43d Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Sun, 30 Dec 2001 17:36:01 -0500 Subject: [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 --- tools/Makefile.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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: -- cgit v0.12