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

version 1.3, 2012/08/31 12:33:07 version 1.6, 2013/04/03 08:22:26
Line 1 Line 1
 #  #
# THE BEER-WARE LICENSE 2012# THE BEER-WARE LICENSE 2012,13
 #
 # <as@paefchen.net> wrote this file. As long as you retain this notice you  # <as@paefchen.net> 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  # 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.2 2012/08/28 10:44:41 as Exp $# $Paefchen: scripts/pgallery/src/Makefile,v 1.5 2012/09/11 16:47:16 as Exp $
 #  #
   
SRC=               pgallery.shBIN=               pgallery.sh
 SRC=            ${BIN}
 SRC+=           pgalleryindex.sh
 SRC+=           pgallerycron.sh
 LIB=            libpgallery.sh  LIB=            libpgallery.sh
 CONF=           pgallery.conf  CONF=           pgallery.conf
NAME!=          sh ${SRC} -vNAME!=          sh ${BIN} -v
 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} ${LIB}${DISTNAME}: ${SRC} ${CONF} ${LIB}
         @echo "==> create ${DISTNAME}"          @echo "==> create ${DISTNAME}"
         mkdir ${NAME}          mkdir ${NAME}
         cp ${SRC} ${LIB} ${CONF} ${NAME}          cp ${SRC} ${LIB} ${CONF} ${NAME}

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