Issue #6: make install-strip and make uninstall

This commit is contained in:
Devaev Maxim
2019-05-18 17:55:56 +03:00
parent d2b57cc7d5
commit 3cd8338886

View File

@@ -28,6 +28,14 @@ install: $(PROG)
install -Dm755 $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG)
install-strip: install
strip $(DESTDIR)$(PREFIX)/bin/$(PROG)
uninstall:
rm $(DESTDIR)$(PREFIX)/bin/$(PROG)
regen:
tools/make-jpeg-h.py src/http/data/blank.jpeg src/http/data/blank_jpeg.h BLANK
tools/make-html-h.py src/http/data/index.html src/http/data/index_html.h INDEX