diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-09-21 23:52:37 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-09-21 23:52:37 (GMT) |
commit | 7059a124502ba128d1a8f941fa6f29079891c99b (patch) | |
tree | b49e2150a0e591b9c4df6e47033f4c726f601f29 /fortran | |
parent | 5e834c4cbc2353be2c9efd0f55dbdb23f87d9650 (diff) | |
download | hdf5-7059a124502ba128d1a8f941fa6f29079891c99b.zip hdf5-7059a124502ba128d1a8f941fa6f29079891c99b.tar.gz hdf5-7059a124502ba128d1a8f941fa6f29079891c99b.tar.bz2 |
[svn-r4467]
Purpose:
Small Bug Fix
Description:
Made 'install-all' its own Makefile rule.
Platforms tested:
Linux
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fortran/Makefile.in b/fortran/Makefile.in index 981f8f8..909c79a 100644 --- a/fortran/Makefile.in +++ b/fortran/Makefile.in @@ -76,7 +76,10 @@ tests TAGS dep depend: (cd $$d && $(MAKE) $@) || exit 1; \ done -install-all install: +install-all: + @$(MAKE) install + +install: @@SETX@; for d in $(SUBDIRS); do \ (cd $$d && $(MAKE) $@) || exit 1; \ done |