From d57ffacd05e957865b32bc48dc412a1a112be351 Mon Sep 17 00:00:00 2001 From: Jerome Charaoui Date: Thu, 24 Jan 2019 21:21:18 -0500 Subject: [PATCH] Add uninstall Makefile target --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d7eab25..0a26423 100644 --- a/Makefile +++ b/Makefile @@ -28,4 +28,8 @@ clean: distclean: clean -.PHONY: all install clean distclean +uninstall: + -rm -f $(DESTDIR)$(prefix)/bin/httpdirfs + -rm -f $(DESTDIR)$(prefix)/share/man/man1/httpdirfs.1 + +.PHONY: all install clean distclean uninstall