Makefile
changeset 13 d7975e514b2a
child 47 bf9d6fa1b1d4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Mon Feb 21 17:08:59 2011 -0800
@@ -0,0 +1,10 @@
+
+VERSION := $(shell awk '/VERSION/ { print $$4 }' shelldap | sed -e "s/[';]//g")
+
+release:
+	@mkdir shelldap-${VERSION}
+	@cp shelldap shelldap-${VERSION}
+	@hg log --style=changelog > shelldap-${VERSION}/ChangeLog
+	@pod2text shelldap > shelldap-${VERSION}/README
+	@tar -czvf shelldap-${VERSION}.tar.gz shelldap-${VERSION}
+	@rm -rf shelldap-${VERSION}