--- scripts/pgallery/src/Makefile 2012/08/31 12:33:07 1.3 +++ scripts/pgallery/src/Makefile 2012/09/11 16:24:46 1.4 @@ -4,22 +4,27 @@ # 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: scripts/pgallery/src/Makefile,v 1.2 2012/08/28 10:44:41 as Exp $ +# $Paefchen: scripts/pgallery/src/Makefile,v 1.3 2012/08/31 12:33:07 as Exp $ # -SRC= pgallery.sh +BIN= pgallery.sh +SRC= ${BIN} +SRC+= pgalleryindex.sh LIB= libpgallery.sh CONF= pgallery.conf -NAME!= sh ${SRC} -v +NAME!= cp ${LIB} ${LIB:R} && sh ${BIN} -v && rm ${LIB:R} DISTNAME= ${NAME}.tar.gz distfile: ${DISTNAME} +test:: + @echo ${LIB:R} + clean: rm -f ${DISTNAME} rm -fr ${NAME} -${DISTNAME}: ${SRC} ${LIB} +${DISTNAME}: ${SRC} ${CONF} ${LIB} @echo "==> create ${DISTNAME}" mkdir ${NAME} cp ${SRC} ${LIB} ${CONF} ${NAME}