aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKylie McClain <somasis@exherbo.org>2015-06-07 20:41:20 -0400
committerKylie McClain <somasis@exherbo.org>2015-06-07 23:00:08 -0400
commitb650364c36f2bd8f0eced514a34436a9620ed496 (patch)
tree10b7d89b974d8ddde49424b51bf95bc0a5379bed
parentcb40cf85825c4c14b7f09e85381bb5f3e4ec296a (diff)
Makefile: add uninstall target
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6b9d8cf..e70afe5 100644
--- a/Makefile
+++ b/Makefile
@@ -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)/;)