[Phpslash-commit] CVS: phpslash-dev Makefile,1.3,1.4
Brought to you by:
joestewart,
nhruby
From: Luis M <le...@us...> - 2004-11-23 17:07:23
|
Update of /cvsroot/phpslash/phpslash-dev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2096 Modified Files: Makefile Log Message: make all works now. and it does the right thing: removes previous builds and attempts to make a new tarball with the latest sources Index: Makefile =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile 23 Nov 2004 16:07:30 -0000 1.3 --- Makefile 23 Nov 2004 17:07:10 -0000 1.4 *************** *** 21,30 **** REVISION=$(shell cat VERSION) ! DISTDIR=phpslash-${REVISION} ! BSF=phpslash-${REVISION} ! all: ! @echo "I find your lack in faith disturbing. - D. Vader" dist: --- 21,31 ---- REVISION=$(shell cat VERSION) ! PACKAGE=phpslash ! DISTDIR=${PACKAGE}-${REVISION} ! BSF=${PACKAGE}-${REVISION} ! ! all: clean dist dist: *************** *** 51,55 **** clean: ! if [ -d ${DISTDIR} ]; then rm -fr ${DISTDIR}; fi ! rm -f ${BSF}.tar.gz --- 52,56 ---- clean: ! rm -fr ${PACKAGE}* ! rm -f *.tar.gz .filelist |