diff options
author | Kylie McClain <somasis@exherbo.org> | 2015-06-07 20:41:20 -0400 |
---|---|---|
committer | Kylie McClain <somasis@exherbo.org> | 2015-06-07 23:00:08 -0400 |
commit | b650364c36f2bd8f0eced514a34436a9620ed496 (patch) | |
tree | 10b7d89b974d8ddde49424b51bf95bc0a5379bed | |
parent | cb40cf85825c4c14b7f09e85381bb5f3e4ec296a (diff) |
Makefile: add uninstall target
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -82,3 +82,7 @@ install: cp -r Shiki-Colors-* $(DESTDIR)$(PREFIX)/share/themes $(foreach PLANK_THEME,$(PLANK),cp -r plank/$(PLANK_THEME) $(DESTDIR)$(PREFIX)/share/plank/themes;) $(foreach COLOR,$(COLORS),cp -r Shiki-$(COLOR) $(DESTDIR)$(PREFIX)/share/themes;) + +uninstall: + $(foreach PLANK_THEME,$(PLANK),rm -rf $(DESTDIR)$(PREFIX)/share/plank/$(PLANK_THEME)/;) + $(foreach COLOR,$(COLORS),rm -rf $(DESTDIR)$(PREFIX)/share/themes/Shiki-$(COLOR)/;) |