summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Silverstone <daniel.silverstone@codethink.co.uk>2012-09-12 15:40:13 +0100
committerDaniel Silverstone <daniel.silverstone@codethink.co.uk>2012-09-12 15:40:22 +0100
commit46c07db296c992ac65d73799f308b536674edc93 (patch)
treefb77c0b674bc176f5babda014243396cf03abcdb /Makefile
parent1a6a09f604441cc2322903b9a1cba4f3564c68a2 (diff)
downloadtrove-setup-46c07db296c992ac65d73799f308b536674edc93.tar.gz
Fixes from walkthrough
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0374936
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,8 @@
+install:
+ mkdir -p "${DESTDIR}/usr/share/gitano/skel"
+ cp -a gitano-admin "${DESTDIR}/usr/share/gitano/skel"
+ mkdir -p "${DESTDIR}/usr/lib/systemd/system/multiuser-target.wants"
+ cp units/* "${DESTDIR}/usr/lib/systemd/system"
+ for I in $$(cd units; ls); do \
+ ln -sf ../$$I "${DESTDIR}/usr/lib/systemd/system/multiuser-target.wants/$I"; \
+ done