Mercurial > p > roundup > code
diff Makefile @ 1:fddc8af9f541
Added stuff to help with release generation.
. Makefile has the release tgz builder in it
. dummy_config.py is an empty config file that replaces the config.py in the
release
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 19 Jul 2001 03:11:24 +0000 |
| parents | |
| children | 97559f7bae2e |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Thu Jul 19 03:11:24 2001 +0000 @@ -0,0 +1,18 @@ +VERSION = 0.1.3 +FILES = cgitb.py date.py roundup-mailgw.py roundup_cgi.py server.py \ + config.py hyperdb.py roundup.py roundupdb.py template.py \ + README CHANGES templates roundup.cgi style.css +PACKAGE = roundup-${VERSION} +PACKAGE_DIR = /tmp/roundup-${VERSION} + + +release: + rm -rf /tmp/${PACKAGE} + mkdir /tmp/${PACKAGE} + cp -r ${FILES} /tmp/${PACKAGE} + cp dummy_config.py /tmp/${PACKAGE} + (cd /tmp; tar zcf ${PACKAGE}.tgz ${PACKAGE}) + mv /tmp/${PACKAGE}.tgz . + +clean: + rm -f *.pyc *.tgz
