www/about/Makefile

16 lines
761 B
Makefile
Raw Normal View History

FILES = members.xml index.html exec.html members.html constitution.html \
donations.html constitution-change-20020920.html \
constitution-change-20040205.html
RELDIR = about/
include ../common.mk
2002-03-11 15:39:54 -05:00
$(OUTDIR)members.html: $(OUTDIR)members.xml
2002-04-15 18:31:30 -04:00
.PHONY: $(OUTDIR)members.xml
$(OUTDIR)members.xml:
test -e /usr/bin/ceoquery || (echo 'Erorr: ceoquery not found'; exit 1)
echo '<?xml version='\''1.0'\''?>' > $@
echo '<memberlist>' >> $@
ceoquery memberlist | sort | awk -F \| '{ name = $$1; program = $$2; userid = $$3; gsub(/&/, "\\&amp;", name); gsub(/&/, "\\&amp;", program); gsub(/"/, "\\&quot;", name); gsub(/"/, "\\&quot;", program); print "<member name=\"" name "\" program=\"" program "\" userid=\"" userid "\" />"; }' >> $@
echo '</memberlist>' >> $@