diff options
author | David Phillips <dbphillipsnz@gmail.com> | 2016-03-07 12:38:14 +1300 |
---|---|---|
committer | David Phillips <dbphillipsnz@gmail.com> | 2016-03-07 12:38:14 +1300 |
commit | b4607e0d51a1982272460e0ab9af359d92876f3f (patch) | |
tree | 96ae87f08033a738f37bcd8e1631262ed8601613 /Makefile | |
parent | 0527dcc74fe2e5da63756af3cc6c2547aa494676 (diff) | |
download | petrichor-b4607e0d51a1982272460e0ab9af359d92876f3f.tar.xz |
Add makefile to ease installation0-beta
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" + |