From b650364c36f2bd8f0eced514a34436a9620ed496 Mon Sep 17 00:00:00 2001 From: Kylie McClain Date: Sun, 7 Jun 2015 20:41:20 -0400 Subject: [PATCH] Makefile: add uninstall target --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) 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)/;)