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 $(OUTDIR)members.html: $(OUTDIR)members.xml $(OUTDIR)members.xml: test -e /usr/bin/ceoquery || (echo 'Erorr: ceoquery not found'; exit 1) echo '' > $@ echo '' >> $@ ceoquery memberlist | sort | awk -F \| '{ name = $$1; program = $$2; userid = $$3; gsub(/&/, "\\&", name); gsub(/&/, "\\&", program); gsub(/"/, "\\"", name); gsub(/"/, "\\"", program); print ""; }' >> $@ echo '' >> $@