diff options
author | 2019-03-18 08:38:45 +0100 | |
---|---|---|
committer | 2019-03-18 08:48:49 +0100 | |
commit | 9e658eda192f51a017b26695750b5a04d7ad2ead (patch) | |
tree | 5ed14dcb65e322f16e51d7fac712fb0194d181ab /Makefile | |
parent | 17129ea33fecb70ad0cfbad707f17d40a8429ef4 (diff) | |
download | flat-remix-9e658eda192f51a017b26695750b5a04d7ad2ead.tar.gz flat-remix-9e658eda192f51a017b26695750b5a04d7ad2ead.zip |
Update Makefile install script with new folder variants
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ PREFIX ?= /usr IGNORE ?= -THEMES ?= Flat-Remix Flat-Remix-Dark Flat-Remix-Light +THEMES ?= $(patsubst %/index.theme,%,$(wildcard ./*/index.theme)) # excludes IGNORE from THEMES list THEMES := $(filter-out $(IGNORE), $(THEMES)) @@ -14,7 +14,7 @@ install: mkdir -p $(DESTDIR)$(PREFIX)/share/icons cp -R $(THEMES) $(DESTDIR)$(PREFIX)/share/icons -# skip building icon caches when packaging + # skip building icon caches when packaging $(if $(DESTDIR),,$(MAKE) $(THEMES)) $(THEMES): |