From e756e98e4a5002ef7e1fc5b76b8f22004514f79c Mon Sep 17 00:00:00 2001 From: Stephane Bortzmeyer Date: Tue, 15 Oct 2002 09:37:56 +0000 Subject: [PATCH] Install non-HTML pages --- Web/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Web/Makefile b/Web/Makefile index b27667c..f2fae8e 100644 --- a/Web/Makefile +++ b/Web/Makefile @@ -1,4 +1,5 @@ PAGESHTML=$(shell ls *.wml | grep -v template | sed 's/.wml/.html/' ) +OTHERPAGES=$(shell ls *.sh) DEST=bortz@echoping.sourceforge.net:/home/groups/e/ec/echoping/htdocs URL=http://echoping.sourceforge.net/ @@ -14,7 +15,7 @@ test: ${PAGESHTML} install: ${PAGESHTML} cvs commit - scp -v ${PAGESHTML} ${DEST} + scp -v ${PAGESHTML} ${OTHERPAGES} ${DEST} checkbot: checkbot --url ${URL} --match ${URL} \ @@ -22,3 +23,5 @@ checkbot: clean: rm -f ${PAGESHTML} + +# $Id$