Add uninstall Makefile target

This commit is contained in:
Jerome Charaoui 2019-01-24 21:21:18 -05:00 committed by Fufu Fang
parent 29acb2d804
commit d57ffacd05
1 changed files with 5 additions and 1 deletions

View File

@ -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