diff options
author | Kylie McClain <somasis@exherbo.org> | 2015-11-29 22:59:57 -0500 |
---|---|---|
committer | Kylie McClain <somasis@exherbo.org> | 2015-11-29 23:00:12 -0500 |
commit | bac5b2a5fb925b9dda441c7f03a3014ba9edda17 (patch) | |
tree | 8577679ac8bb9c7b1bccbfe4ae8782c80597444d | |
parent | ef2e48d6417d20e2a5b44a2b230ed2e631f45bc0 (diff) |
Various build system updates/tweaks
-rw-r--r-- | Makefile | 11 | ||||
m--------- | numix-themes | 0 |
2 files changed, 8 insertions, 3 deletions
@@ -78,7 +78,10 @@ help: @echo " If you do not want to run \`git submodules update\` during the prepare" @echo " phase, set \${no_git}; ex. \`no_git=true make prepare\`" -prepare: +numix-themes: + git clone https://github.com/shimmerproject/Numix $(BASE) + +prepare: numix-themes [[ "$(no_git)" ]] || git submodule init [[ "$(no_git)" ]] || git submodule update cd $(BASE) && rm -rf xfwm4 metacity-1 openbox-3 xfce-notify-4.0 index.theme @@ -87,7 +90,6 @@ Shiki-%: @echo "Generating $@ from $(BASE)..." cp -r $(BASE) $@ sed -i $@/gtk-2.0/gtkrc $@/gtk-3.0/*.css $@/gtk-3.0/assets/*.svg \ - $@/gtk-3.0/apps/*.css \ -e 's/#d64937/#$($@_selected)/g' \ -e 's/#2d2d2d/#$($@_menubar_bg)/g' @@ -96,7 +98,10 @@ generate: prepare clean: rm -rf $(BASE) - $(foreach COLOR,$(COLORS),rm -rf Shiki-$(COLOR)/;) + @for color in $(COLORS);do \ + echo "rm -rf Shiki-$$color"; \ + rm -rf "Shiki-$$color"; \ + done install: generate mkdir -p $(DESTDIR)$(PREFIX)/share/themes diff --git a/numix-themes b/numix-themes deleted file mode 160000 -Subproject d6d58541dbd5cbb4de1b6303c9e5bf3f2712f33 |