diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..889509f --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +PREFIX=/usr/ +DESTDIR= + +THEME_FILES=\ + index.html \ + index.theme \ + petrichor.js \ + petrichor.css \ + bg.jpg \ + iec5009.svg \ + drop-down.svg + +all: + + +install: + for f in $(THEME_FILES) ; do \ + install -Dm 644 "$$f" -t "$(DESTDIR)/$(PREFIX)/share/lightdm-webkit/themes/petrichor/" ; \ + done + install -Dm 644 LICENSE "$(DESTDIR)/$(PREFIX)/share/licenses/petrichor/LICENSE" + |