From b4607e0d51a1982272460e0ab9af359d92876f3f Mon Sep 17 00:00:00 2001 From: David Phillips Date: Mon, 7 Mar 2016 12:38:14 +1300 Subject: Add makefile to ease installation --- Makefile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Makefile 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" + -- cgit v1.1