| tFix uninstall targets (by Wiktor Żelazny) - scholarref - tools for DOI and Bi… | |
| git clone git://src.adamsgaard.dk/scholarref | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit 87c61d1e2bd22c0cb04d2f538648a79aac5b252c | |
| parent f4a876c90059d32a6a919108c8d98437284a0099 | |
| Author: Anders Damsgaard <[email protected]> | |
| Date: Mon, 25 Nov 2019 17:28:49 +0100 | |
| Fix uninstall targets (by Wiktor Żelazny) | |
| Diffstat: | |
| M Makefile | 10 +++++----- | |
| 1 file changed, 5 insertions(+), 5 deletions(-) | |
| --- | |
| diff --git a/Makefile b/Makefile | |
| t@@ -11,10 +11,10 @@ install: | |
| install -m 775 articlesearch $(DESTDIR)$(PREFIX)/bin | |
| uninstall: | |
| - rm -f $(DESTDIR)$(PREFIX)/getdoi | |
| - rm -f $(DESTDIR)$(PREFIX)/getref | |
| - rm -f $(DESTDIR)$(PREFIX)/scholarref | |
| - rm -f $(DESTDIR)$(PREFIX)/shdl | |
| - rm -f $(DESTDIR)$(PREFIX)/articlesearch | |
| + rm -f $(DESTDIR)$(PREFIX)/bin/getdoi | |
| + rm -f $(DESTDIR)$(PREFIX)/bin/getref | |
| + rm -f $(DESTDIR)$(PREFIX)/bin/scholarref | |
| + rm -f $(DESTDIR)$(PREFIX)/bin/shdl | |
| + rm -f $(DESTDIR)$(PREFIX)/bin/articlesearch | |
| .PHONY: default install uninstall |