From 1dab130c2da4b8ca410652365d3e861d98828f2c Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Sun, 30 Dec 2001 10:07:00 -0500 Subject: [svn-r4759] 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. 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 c4ceac7..08b90c3 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -45,6 +45,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; \ @@ -65,7 +70,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