--- scripts/pgallery/src/Makefile 2012/09/11 16:47:16 1.5 +++ scripts/pgallery/src/Makefile 2013/04/03 08:31:07 1.7 @@ -1,15 +1,17 @@ # -# THE BEER-WARE LICENSE 2012 +# THE BEER-WARE LICENSE 2012,13 +# # wrote this file. As long as you retain this notice you # 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.4 2012/09/11 16:24:46 as Exp $ +# $Paefchen: scripts/pgallery/src/Makefile,v 1.6 2013/04/03 08:22:26 as Exp $ # BIN= pgallery.sh SRC= ${BIN} SRC+= pgalleryindex.sh +SRC+= pgallerycron.sh LIB= libpgallery.sh CONF= pgallery.conf NAME!= sh ${BIN} -v @@ -26,8 +28,10 @@ clean: ${DISTNAME}: ${SRC} ${CONF} ${LIB} @echo "==> create ${DISTNAME}" - mkdir ${NAME} - cp ${SRC} ${LIB} ${CONF} ${NAME} - tar cvzf ${DISTNAME} ${NAME} - rm -r ${NAME} + mkdir -vp ${NAME}/bin ${NAME}/lib ${NAME}/etc + cp -v ${SRC} ${NAME}/bin + cp -v ${LIB} ${NAME}/lib + cp -v ${CONF} ${NAME}/etc + tar -cvzf ${DISTNAME} ${NAME} + rm -vr ${NAME} @echo "==> ready ${DISTNAME}"