From: Yochem van Rosmalen Date: Mon, 19 Apr 2021 19:04:42 +0000 (+0200) Subject: Remove binary and manpage on `$ make uninstall` (#146) X-Git-Url: https://git.danieliu.xyz/?p=smdp.git;a=commitdiff_plain;h=4349c96187dcf97eedcbe7297379df42f705757e Remove binary and manpage on `$ make uninstall` (#146) --- diff --git a/Makefile b/Makefile index 0db1ec6..02ef0fc 100644 --- a/Makefile +++ b/Makefile @@ -65,6 +65,7 @@ install: install -m 644 mdp.1 $(DESTDIR)$(PREFIX)/share/man/man1/$(TARGET).1 uninstall: - $(RM) $(DESTDIR)$(PREFIX)/$(TARGET) + $(RM) $(DESTDIR)$(PREFIX)/bin/$(TARGET) + $(RM) $(DESTDIR)$(PREFIX)/share/man/man1/$(TARGET).1 .PHONY: all clean install src uninstall