diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-02-22 21:58:18 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-02-22 21:58:18 (GMT) |
commit | d8266790ec757715f834f21e8938ef9ab5e9f641 (patch) | |
tree | a0cd7515a45d1eb66261f6636f938673b19ae33d /fortran | |
parent | 92dd5633714a9185b4aba54de61b56d7fd76a9c4 (diff) | |
download | hdf5-d8266790ec757715f834f21e8938ef9ab5e9f641.zip hdf5-d8266790ec757715f834f21e8938ef9ab5e9f641.tar.gz hdf5-d8266790ec757715f834f21e8938ef9ab5e9f641.tar.bz2 |
[svn-r5001] Purpose:
Bug Fix
Description:
The make uninstall-examples wasn't working if fortran or C++ was
built.
Solution:
Added uninstall-examples to the Makefile.
Platforms tested:
Linux
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/Makefile.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fortran/Makefile.in b/fortran/Makefile.in index 909c79a..a364061 100644 --- a/fortran/Makefile.in +++ b/fortran/Makefile.in @@ -89,6 +89,9 @@ install: install-examples: (cd examples && $(MAKE) $@) || exit 1; +uninstall-examples: + (cd examples && $(MAKE) $@) || exit 1; + .PHONY: all lib progs test _test install uninstall dep depend clean \ mostlyclean distclean maintainer-clean |