Mercurial > p > roundup > code
view Makefile @ 51:3a7e5515c1bd
ok, so now "./roundup-admin init" will ask questions...
...in an attempt to get a workable instance_home set up :)
_and_ anydbm has had its first test :)
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 23 Jul 2001 08:45:28 +0000 |
| parents | 4ced1524c63d |
| children |
line wrap: on
line source
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} (cd /tmp; tar zcf ${PACKAGE}.tar.gz ${PACKAGE}) mv /tmp/${PACKAGE}.tar.gz . clean: rm -f *.pyc *.tar.gz
