mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-22 04:27:58 +01:00
make uninstall-old and make clean-old can be used to remove files from file locations/names that are no longer being used
This commit is contained in:
parent
f3be0884c8
commit
d24b8b19a7
1 changed files with 9 additions and 0 deletions
9
Makefile
9
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:
|
||||
|
|
Loading…
Reference in a new issue