nt

Unnamed repository; edit this file 'description' to name the repository.
git clone git://edryd.org/nt
Log | Files | Refs | LICENSE

commit 51cb9985482dca5b64a417a719253ad07e90d6bc
parent 4e9704a205e91fd61703e22d0ea7db495b651290
Author: Ed van Bruggen <edvb54@gmail.com>
Date:   Mon, 14 Aug 2017 23:33:04 -0700

Add dmenu_nt to uninstall

Diffstat:
Makefile | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -53,9 +53,12 @@ install: all @echo \ done uninstall: - @echo -n removing executable file from $(DESTDIR)$(PREFIX)/bin ... + @echo -n removing $(EXE) from $(DESTDIR)$(PREFIX)/bin ... @rm -f $(DESTDIR)$(PREFIX)/bin/$(EXE) @echo \ done + @echo -n removing dmenu_$(EXE) file from $(DESTDIR)$(PREFIX)/bin ... + @rm -f $(DESTDIR)$(PREFIX)/bin/dmenu_$(EXE) + @echo \ done @echo -n removing manual page from $(DESTDIR)$(MANPREFIX)/man1 ... @rm -f $(DESTDIR)$(MANPREFIX)/man1/$(EXE).1 @echo \ done