Diff for /scripts/pgallery/src/Makefile between versions 1.6 and 1.8

version 1.6, 2013/04/03 08:22:26 version 1.8, 2013/04/03 10:16:39
Line 5 Line 5
 # can do whatever you want with this stuff. If we meet some day, and you think  # 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  # this stuff is worth it, you can buy me a beer in return Aron Schlesinger
 #  #
# $Paefchen: scripts/pgallery/src/Makefile,v 1.5 2012/09/11 16:47:16 as Exp $# $Paefchen: scripts/pgallery/src/Makefile,v 1.7 2013/04/03 08:31:07 as Exp $
 #  #
   
 BIN=            pgallery.sh  BIN=            pgallery.sh
Line 23  test:: Line 23  test::
         @echo ${LIB:R}          @echo ${LIB:R}
   
 clean:  clean:
        rm -f ${DISTNAME}        rm -fv ${DISTNAME}
        rm -fr ${NAME}        rm -frv ${NAME}
   
 ${DISTNAME}: ${SRC} ${CONF} ${LIB}  ${DISTNAME}: ${SRC} ${CONF} ${LIB}
         @echo "==> create ${DISTNAME}"          @echo "==> create ${DISTNAME}"
        mkdir ${NAME}        mkdir -vp ${NAME}/bin ${NAME}/lib ${NAME}/etc
        cp ${SRC} ${LIB} ${CONF} ${NAME}        cp -v ${SRC} ${NAME}/bin
        tar cvzf ${DISTNAME} ${NAME}        cp -v ${LIB} ${NAME}/lib
        rm -r ${NAME}        cp -v ${CONF} ${NAME}/etc
         tar -cvzf ${DISTNAME} ${NAME}
         rm -vr ${NAME}
         @echo "==> ready ${DISTNAME}"          @echo "==> ready ${DISTNAME}"

Removed from v.1.6  
changed lines
  Added in v.1.8