From d8266790ec757715f834f21e8938ef9ab5e9f641 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Fri, 22 Feb 2002 16:58:18 -0500 Subject: [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 --- c++/Makefile.in | 3 +++ fortran/Makefile.in | 3 +++ 2 files changed, 6 insertions(+) diff --git a/c++/Makefile.in b/c++/Makefile.in index 57c75bc..b39832c 100644 --- a/c++/Makefile.in +++ b/c++/Makefile.in @@ -91,6 +91,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 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 -- cgit v0.12