From d24b8b19a7ea4b99da3de091664395a63de31ed0 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Tue, 14 Aug 2012 22:52:01 +0200 Subject: make uninstall-old and make clean-old can be used to remove files from file locations/names that are no longer being used --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index c89085a..155a540 100644 --- a/Makefile +++ b/Makefile @@ -117,6 +117,11 @@ uninstall: if [ -f "$(INSTALLDIR)/share/info/ponysay.info.gz" ]; then unlink "$(INSTALLDIR)/share/info/ponysay.info.gz" ; fi if [ -f unlink "$(INSTALLDIR)/share/info/ponythink.info.gz" ]; then unlink "$(INSTALLDIR)/share/info/ponythink.info.gz" ; fi +uninstall-old: + if [ -d "$(INSTALLDIR)/share/ponies" ]; then rm -fr "$(INSTALLDIR)/share/ponies" ; fi + if [ -d "$(INSTALLDIR)/share/ttyponies" ]; then rm -fr "$(INSTALLDIR)/share/ttyponies" ; fi + if [ -f "$(INSTALLDIR)/bin/ponysaytruncater" ]; then unlink "$(INSTALLDIR)/bin/ponysaytruncater" ; fi + clean: if [ -f "truncater" ]; then rm -f "truncater" ; fi if [ -f "completion/bash-completion-think.sh" ]; then rm -f "completion/bash-completion-think.sh" ; fi @@ -126,6 +131,10 @@ clean: if [ -f "manuals/manpage.es.6.gz" ]; then rm -f "manuals/manpage.es.6.gz" ; fi if [ -f "ponysay.info.gz" ]; then rm -f "ponysay.info.gz" ; fi +clean-old: + if [ -f "ponysaytruncater" ]; then rm -f "ponysaytruncater" ; fi + + ## Scripts for maintainers ttyponies: -- cgit