aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2008-11-07 17:08:40 +0100
committerGuido Guenther <agx@sigxcpu.org>2008-11-08 20:30:07 +0100
commit4df9b65e3c71883bba18dcde01e6bda7b66586de (patch)
treec282df91b830c0185ee91a5baf23de3b0cb5825a
parenteedb25016b89e8090f35c4b4cc86c513264bb63a (diff)
add Makefile
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..31c39d8
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+VERSION=$(shell grep ^VERSION index.cgi | sed -e s'/.*\="\([0-9.]\+\)".*/\1/')
+PKG=cl2vcs
+
+all:
+
+clean:
+ rm -f *.pyc
+
+dist: clean
+ git-archive --format=tar --prefix=$(PKG)-$(VERSION)/ HEAD | gzip -c > ../$(PKG)-$(VERSION).tar.gz
+