Changed release packaging to place docs and programs in separate directories.
1 parent 6e597a1 commit e84de8db34afd8fe2421804ed01ef8819a769e9f
@tundra tundra authored on 3 May 2006
Showing 1 changed file
View
10
makefile
# Build a release of tperimeter using 'make'
# $Id: makefile,v 1.111 2006/05/03 06:58:33 tundra Exp $
# $Id: makefile,v 1.112 2006/05/03 07:14:13 tundra Exp $
# Requires a modern 'make' like GNU.
 
 
# Uncomment One Of The Following For Early Releases
progs: ${PROGFILES}
chmod 740 ${PROGFILES}
 
release: docs progs
@mkdir ${DIR}
@mv ${DOCFILES} ${PROGFILES} ${SUPPFILES} ${DIR}
@mkdir -p ${DIR}/docs ${DIR}/progs
@mv ${DOCFILES} ${DIR}/docs
@mv ${PROGFILES} ${DIR}/progs
@mv ${SUPPFILES} ${DIR}
@tar -czvf ${TARBALL} ${DIR}
@rm -rf ${DIR}
@mv ${DIR}.tar.gz Releases
@gmake clean