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

20 lines
375 B
Makefile

PAGESHTML=$(shell ls *.wml | grep -v template | sed 's/.wml/.html/' )
DEST=bortz@echoping.sourceforge.net:/home/groups/echoping/htdocs
all: test
%.html: %.wml template.wml
wml -o $@ ${DEBUG} $<
test: ${PAGESHTML}
@for page in ${PAGESHTML}; do \
(nsgmls -s $$page) \
done
install: ${PAGESHTML}
cvs commit
scp -v ${PAGESHTML} ${DEST}
clean:
rm -f ${PAGESHTML}