diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-12-30 15:07:00 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-12-30 15:07:00 (GMT) |
commit | 1dab130c2da4b8ca410652365d3e861d98828f2c (patch) | |
tree | f99951235de4527f29cbd6202f7857922932a888 /tools | |
parent | d134ec8ad0506b8e5db02503a072fee777fa7205 (diff) | |
download | hdf5-1dab130c2da4b8ca410652365d3e861d98828f2c.zip hdf5-1dab130c2da4b8ca410652365d3e861d98828f2c.tar.gz hdf5-1dab130c2da4b8ca410652365d3e861d98828f2c.tar.bz2 |
[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
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
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: |