summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..64e6cbe
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+all: keytrans
+
+keytrans:
+ $(MAKE) -C src/keytrans
+
+release: clean
+ tar c COPYING doc etc Makefile man src | gzip -n > ../monkeysphere_`head -n1 debian/changelog | sed 's/.*(\([^-]*\)-.*/\1/'`.orig.tar.gz
+
+clean:
+ $(MAKE) -C src/keytrans clean
+
+.PHONY: all clean release