--- scripts/pgallery/src/Makefile 2012/08/27 14:23:59 1.1 +++ scripts/pgallery/src/Makefile 2012/08/31 12:33:07 1.3 @@ -4,10 +4,12 @@ # can do whatever you want with this stuff. If we meet some day, and you think # this stuff is worth it, you can buy me a beer in return Aron Schlesinger # -# $Paefchen$ +# $Paefchen: scripts/pgallery/src/Makefile,v 1.2 2012/08/28 10:44:41 as Exp $ # SRC= pgallery.sh +LIB= libpgallery.sh +CONF= pgallery.conf NAME!= sh ${SRC} -v DISTNAME= ${NAME}.tar.gz @@ -17,8 +19,10 @@ clean: rm -f ${DISTNAME} rm -fr ${NAME} -${DISTNAME}: ${SRC} +${DISTNAME}: ${SRC} ${LIB} + @echo "==> create ${DISTNAME}" mkdir ${NAME} - cp ${SRC} ${NAME} + cp ${SRC} ${LIB} ${CONF} ${NAME} tar cvzf ${DISTNAME} ${NAME} rm -r ${NAME} + @echo "==> ready ${DISTNAME}"