Annotation of scripts/pgallery/src/Makefile, revision 1.1
1.1 ! as 1: #
! 2: # THE BEER-WARE LICENSE 2012
! 3: # <as@paefchen.net> wrote this file. As long as you retain this notice you
! 4: # can do whatever you want with this stuff. If we meet some day, and you think
! 5: # this stuff is worth it, you can buy me a beer in return Aron Schlesinger
! 6: #
! 7: # $Paefchen$
! 8: #
! 9:
! 10: SRC= pgallery.sh
! 11: NAME!= sh ${SRC} -v
! 12: DISTNAME= ${NAME}.tar.gz
! 13:
! 14: distfile: ${DISTNAME}
! 15:
! 16: clean:
! 17: rm -f ${DISTNAME}
! 18: rm -fr ${NAME}
! 19:
! 20: ${DISTNAME}: ${SRC}
! 21: mkdir ${NAME}
! 22: cp ${SRC} ${NAME}
! 23: tar cvzf ${DISTNAME} ${NAME}
! 24: rm -r ${NAME}