view Makefile @ 27:e5e9ea306a09

moving the bin files to facilitate out-of-the-boxness
author Richard Jones <richard@users.sourceforge.net>
date Mon, 23 Jul 2001 03:46:48 +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/