view Makefile @ 89:b6b30ba53986

Fixed some of the exceptions so they're the right type. Removed the str()-ification of node ids so we don't mask oopsy errors any more.
author Richard Jones <richard@users.sourceforge.net>
date Fri, 27 Jul 2001 06:25:35 +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

Roundup Issue Tracker: http://roundup-tracker.org/