aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2016-03-07 12:38:14 +1300
committerDavid Phillips <dbphillipsnz@gmail.com>2016-03-07 12:38:14 +1300
commitb4607e0d51a1982272460e0ab9af359d92876f3f (patch)
tree96ae87f08033a738f37bcd8e1631262ed8601613
parent0527dcc74fe2e5da63756af3cc6c2547aa494676 (diff)
downloadpetrichor-b4607e0d51a1982272460e0ab9af359d92876f3f.tar.xz
Add makefile to ease installation0-beta
-rw-r--r--Makefile21
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"
+