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 /c++ | |
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 'c++')
-rw-r--r-- | c++/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/c++/Makefile.in b/c++/Makefile.in index 3f18b9b..57c75bc 100644 --- a/c++/Makefile.in +++ b/c++/Makefile.in @@ -78,7 +78,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 |