diff options
author | EuAndreh <eu@euandre.org> | 2021-08-28 14:23:32 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-08-28 14:23:32 -0300 |
commit | 0f117361f69cf7e8cbcf1f5e0d63759ec29e6614 (patch) | |
tree | 4594c7c69c8cd56ceb48e79c748b5c48b54542e8 | |
parent | Makefile: Be more explicit about empty lines on the generated src/config.h (diff) | |
download | gistatic-0f117361f69cf7e8cbcf1f5e0d63759ec29e6614.tar.gz gistatic-0f117361f69cf7e8cbcf1f5e0d63759ec29e6614.tar.xz |
Makefile: Remove bin, lib and include artifacts in "uninstall" target
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -102,6 +102,10 @@ install: all sh doc/manpages.sh -ip '$(DESTDIR)$(MANPREFIX)' $(manpages) uninstall: + rm -f \ + '$(DESTDIR)$(PREFIX)/bin/gistatic' \ + '$(DESTDIR)$(PREFIX)/lib/libgistatic.a' \ + '$(DESTDIR)$(PREFIX)/include/gistatic.h' sh doc/manpages.sh -up '$(DESTDIR)$(MANPREFIX)' $(manpages) |