You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
echoping/Web/Makefile

28 lines
531 B
Makefile

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/
all: test
%.html: %.wml template.wml
wml -o $@ ${DEBUG} $<
test: ${PAGESHTML}
@for page in ${PAGESHTML}; do \
(nsgmls -s $$page) \
done
install: ${PAGESHTML}
svn commit
scp -v ${PAGESHTML} ${OTHERPAGES} ${DEST}
checkbot:
checkbot --url ${URL} --match ${URL} \
--verbose
clean:
rm -f ${PAGESHTML}
# $Id$