Mercurial > p > roundup > code
view Makefile @ 78:edcca72de643
first cut at setup.py - installs the package, but not the bin/cgi-bin yet
| author | Anthony Baxter <anthonybaxter@users.sourceforge.net> |
|---|---|
| date | Wed, 25 Jul 2001 04:19:55 +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
