summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile25
1 files changed, 23 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8f8cd92..765c3e9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,9 @@
-MONKEYSPHERE_VERSION=`head -n1 debian/changelog | sed 's/.*(\([^-]*\)-.*/\1/'`
+MONKEYSPHERE_VERSION = `head -n1 debian/changelog | sed 's/.*(\([^-]*\)-.*/\1/'`
+
+# these defaults are for debian. porters should probably adjust them
+# before calling make install
+ETCPREFIX ?=
+PREFIX ?= /usr
all: keytrans
@@ -24,4 +29,20 @@ clean:
# clean up old monkeysphere packages lying around as well.
rm -f monkeysphere_*
-.PHONY: all clean tarball debian-package
+# this target is to be called from the tarball, not from the git
+# working dir!
+install: all
+ mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/sbin $(DESTDIR)$(PREFIX)/share/monkeysphere
+ mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1 $(DESTDIR)$(PREFIX)/share/man/man7 $(DESTDIR)$(PREFIX)/share/man/man8
+ mkdir -p $(DESTDIR)$(PREFIX)/share/doc/monkeysphere
+ mkdir -p $(DESTDIR)$(ETCPREFIX)/etc/monkeysphere
+ install src/monkeysphere src/monkeysphere-ssh-proxycommand src/keytrans/openpgp2ssh $(DESTDIR)/$(PREFIX)/bin
+ install src/monkeysphere-server $(DESTDIR)/$(PREFIX)/sbin
+ install -m 0644 src/common $(DESTDIR)/$(PREFIX)/share/monkeysphere
+ install doc/* $(DESTDIR)$(PREFIX)/share/doc/monkeysphere
+ install man/man1/* $(DESTDIR)$(PREFIX)/share/man/man1
+ install man/man7/* $(DESTDIR)$(PREFIX)/share/man/man7
+ install man/man8/* $(DESTDIR)$(PREFIX)/share/man/man8
+ install -m 0644 etc/* $(DESTDIR)$(ETCPREFIX)/etc/monkeysphere
+
+.PHONY: all clean tarball debian-package install