diff options
author | David Phillips <dbphillipsnz@gmail.com> | 2016-03-14 16:11:56 +1300 |
---|---|---|
committer | David Phillips <dbphillipsnz@gmail.com> | 2016-03-14 16:11:56 +1300 |
commit | 6bd10915ee2fdaac0fa41199dd095c3f6c02c027 (patch) | |
tree | 5199710acc34975ebf97ae0f75e28cf86b2d4d3c | |
parent | 34e34f456cce4aabe3806f7dc6438d6e03f32b10 (diff) | |
download | petrichor-6bd10915ee2fdaac0fa41199dd095c3f6c02c027.tar.xz |
Makefile installation fix
-rw-r--r-- | Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -2,24 +2,21 @@ PREFIX=/usr/ DESTDIR= VERSION=1.0 - THEME_FILES=\ index.html \ index.theme \ petrichor.js \ - petrichor.css \ - bg.jpg \ - iec5009.svg \ - drop-down.svg + petrichor.css .PHONY: all install all: $(THEME_FILES) -install: +install: all for f in $(THEME_FILES) ; do \ install -Dm 644 "$$f" -t "$(DESTDIR)/$(PREFIX)/share/lightdm-webkit/themes/petrichor/" ; \ done + cp -r image "$(DESTDIR)/$(PREFIX)/share/lightdm-webkit/themes/petrichor/" install -Dm 644 LICENSE "$(DESTDIR)/$(PREFIX)/share/licenses/petrichor/LICENSE" clean: |