Makefile
author Mahlon E. Smith <mahlon@martini.nu>
Mon, 21 Feb 2011 17:08:59 -0800
changeset 13 d7975e514b2a
child 47 bf9d6fa1b1d4
permissions -rw-r--r--
Add a quick Makefile to automate future release tarballs.


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}