tAdd missing install/uninstall for shdl - scholarref - tools for DOI and BiBTeX reference extraction, fetching, and parsing
git clone git://src.adamsgaard.dk/scholarref
Log
Files
Refs
README
LICENSE
---
commit 61f32baaff36f089f3960f7a6b97a59126bf0bff
parent 8eab3ed889928ef7abf5f2aef7a87daa37fa2408
Author: Anders Damsgaard 
Date:   Mon, 16 Sep 2019 10:56:26 +0200

Add missing install/uninstall for shdl

Diffstat:
  M Makefile                            |       2 ++

1 file changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/Makefile b/Makefile
t@@ -7,10 +7,12 @@ install:
         install -m 775 getdoi $(DESTDIR)$(PREFIX)/bin
         install -m 775 getref $(DESTDIR)$(PREFIX)/bin
         install -m 775 scholarref $(DESTDIR)$(PREFIX)/bin
+        install -m 775 shdl $(DESTDIR)$(PREFIX)/bin
 
 uninstall:
         $(RM) $(DESTDIR)$(PREFIX)/getdoi
         $(RM) $(DESTDIR)$(PREFIX)/getref
         $(RM) $(DESTDIR)$(PREFIX)/scholarref
+        $(RM) $(DESTDIR)$(PREFIX)/shdl
 
 .PHONY: default install uninstall