view Makefile @ 4:b10f8834cce4

modified to use localconfig.py (if it exists) and to make the various options (e.g. paths) based on ROUNDUP_HOME &c.
author Anthony Baxter <anthonybaxter@users.sourceforge.net>
date Thu, 19 Jul 2001 05:46:47 +0000
parents 97559f7bae2e
children 4ced1524c63d
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}
	cp dummy_config.py /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/