version 1.1, 2012/08/27 14:23:59
|
version 1.8, 2013/04/03 10:16:39
|
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$ | # $Paefchen: scripts/pgallery/src/Makefile,v 1.7 2013/04/03 08:31:07 as Exp $ |
# |
# |
|
|
SRC= pgallery.sh | BIN= pgallery.sh |
NAME!= sh ${SRC} -v | SRC= ${BIN} |
| SRC+= pgalleryindex.sh |
| SRC+= pgallerycron.sh |
| LIB= libpgallery.sh |
| CONF= pgallery.conf |
| NAME!= 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 -fv ${DISTNAME} |
rm -fr ${NAME} | rm -frv ${NAME} |
|
|
${DISTNAME}: ${SRC} | ${DISTNAME}: ${SRC} ${CONF} ${LIB} |
mkdir ${NAME} | @echo "==> create ${DISTNAME}" |
cp ${SRC} ${NAME} | mkdir -vp ${NAME}/bin ${NAME}/lib ${NAME}/etc |
tar cvzf ${DISTNAME} ${NAME} | cp -v ${SRC} ${NAME}/bin |
rm -r ${NAME} | cp -v ${LIB} ${NAME}/lib |
| cp -v ${CONF} ${NAME}/etc |
| tar -cvzf ${DISTNAME} ${NAME} |
| rm -vr ${NAME} |
| @echo "==> ready ${DISTNAME}" |