tFix uninstall targets (by Wiktor Żelazny) - scholarref - tools for DOI and BiBTeX reference extraction, fetching, and parsing
 (HTM) git clone git://src.adamsgaard.dk/scholarref
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 87c61d1e2bd22c0cb04d2f538648a79aac5b252c
 (DIR) parent f4a876c90059d32a6a919108c8d98437284a0099
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       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(-)
       ---
 (DIR) 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