aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKylie McClain <somasis@exherbo.org>2015-06-07 20:41:01 -0400
committerKylie McClain <somasis@exherbo.org>2015-06-07 23:00:08 -0400
commitcb40cf85825c4c14b7f09e85381bb5f3e4ec296a (patch)
tree647906c2c1c4fb06a5dcd329c1b3daeda674b6e2
parentf1075b27300fda7826ba24e132fba8fa0bfc8d06 (diff)
Makefile: add plank themes as variables
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 568d444..6b9d8cf 100644
--- a/Makefile
+++ b/Makefile
@@ -18,6 +18,7 @@ PREFIX ?= /usr
BASE = numix-themes
COLORS = Brave-Revival Human-Revival Illustrious-Revival \
Noble-Revival Wine-Revival Wise-Revival
+PLANK = Shiki Shiki-panel Shiki-platform
Shiki-Brave-Revival_menubar_bg = 212121
Shiki-Human-Revival_menubar_bg = 212121
@@ -49,6 +50,7 @@ help:
@echo
@echo "Base theme: $(BASE)"
@echo "Default themes to generate: $(foreach COLOR,$(COLORS),Shiki-$(COLOR))"
+ @echo "Plank themes: $(PLANK)"
@echo
@echo "Notes:"
@echo " If you do not want to run \`git submodules update\` during the prepare"
@@ -78,5 +80,5 @@ install:
mkdir -p $(DESTDIR)$(PREFIX)/share/themes
mkdir -p $(DESTDIR)$(PREFIX)/share/plank/themes
cp -r Shiki-Colors-* $(DESTDIR)$(PREFIX)/share/themes
- cp -r plank/* $(DESTDIR)$(PREFIX)/share/plank/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;)