Update `uninstall` target in Makefile to respect env vars (#56)

`uninstall` now `rm`s from `${DESTDIR}${PREFIX}/bin` instead of
defaulting to `/usr/local/bin`
This commit is contained in:
Saager Mhatre 2021-10-02 08:25:25 -04:00 committed by GitHub
parent 868bc1aff6
commit 3ce21c9b2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ update-force :
rm -f has
uninstall :
rm -f /usr/local/bin/has
rm -f $(DESTDIR)$(PREFIX)/bin/has
.PHONY: test install uninstall update