Diff for /scripts/pgallery/src/Makefile between versions 1.1 and 1.4

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

Removed from v.1.1  
changed lines
  Added in v.1.4