hermes

HTTP GET/HEAD-only web server for static content.
git clone https://git.francescosaccone.com/hermes
Log | Files | Refs | README | LICENSE

commit 4895e46f324feebac64a430a74f0b9631239133e
parent f263310db15226da64cd37109bdf792cfbde1dc5
Author: Francesco Saccone <francesco@francescosaccone.com>
Date:   Tue,  1 Apr 2025 14:28:45 +0200

build: add 'uninstall' target

Signed-off-by: Francesco Saccone <francesco@francescosaccone.com>

Diffstat:
MMakefile | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -23,4 +23,8 @@ install: all cp -f hermes.1 $(DESTDIR)$(MANPREFIX)/man1 chmod 644 $(DESTDIR)$(MANPREFIX)/man1/hermes.1 -.PHONY: all clean install +uninstall: + rm -f $(DESTDIR)$(PREFIX)/bin/hermes + rm -f $(DESTDIR)$(PREFIX)/man1/hermes.1 + +.PHONY: all clean install uninstall