From 62742d1fa37d7bed77c4932b583a63e1172fb02e Mon Sep 17 00:00:00 2001 From: Kevin Ernst Date: Fri, 24 Sep 2021 13:07:48 -0400 Subject: [PATCH] Makefile: add "uninstall" because why not --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 5212507..0c9f18c 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,10 @@ install: all symlinks.8 $(INSTALL) -d $(MANDIR) $(INSTALL) -m 644 symlinks.8 $(MANDIR) +uninstall: + -rm -i $(BINDIR)/symlinks + -rm -i $(MANDIR)/symlinks.8 + .PHONY: clean clean: rm -f symlinks *.o core