TEMPLATESROOT = ../templates XMLROOT = ../xml XSLROOT = ../xsl DOCUMENTS = home.html index.html menu.html \ consortium.html \ project.html \ sites/aei.html \ sites/bologna.html \ sites/dfki.html \ sites/inria.html \ sites/nijmegen.html \ sites/trusted-logic.html \ people/aei/kelley.html \ people/aei/schutz.html \ people/aei/velden.html \ people/aei/wegner.html \ people/bologna/asperti.html \ people/bologna/guidi.html \ people/bologna/padovani.html \ people/bologna/sacerdoti.html \ people/bologna/schena.html \ people/dfki/kohlhase.html \ people/dfki/melis.html \ people/dfki/siekmann.html \ people/inria/amerkad.html \ people/inria/bertot.html \ people/inria/chicli.html \ people/inria/delahaye.html \ people/inria/herbelin.html \ people/inria/naciri.html \ people/inria/pottier.html \ people/inria/rideau.html \ people/inria/thery.html \ people/nijmegen/barendregt.html \ people/nijmegen/barreiro.html \ people/nijmegen/cohen.html \ people/nijmegen/cruz-filipe.html \ people/nijmegen/geuvers.html \ people/nijmegen/niqui.html \ people/nijmegen/stein.html \ people/nijmegen/synek.html \ people/nijmegen/wiedijk.html \ people/trusted-logic/bolignano.html \ publications/others/category_al.html \ publications/others/crimea2001_apss.html \ publications/others/cup_s.html \ publications/others/cup_s2.html \ publications/others/extreme2001_apss.html \ publications/others/har_bg.html \ publications/others/jep_ws.html \ publications/others/jep_wwsw.html \ publications/others/jlp2001_scg.html \ publications/others/mathml2000_apss.html \ publications/others/mscs_gb.html \ publications/others/tcs2001_og.html \ publications/others/tphols2000_gwz.html \ publications/others/tphols2001_apss.html \ work-packages/distribution.html \ work-packages/information-dissemination-and-exploitation.html \ work-packages/interfaces.html \ work-packages/metadata.html \ work-packages/project-management.html \ work-packages/requirement-analysis.html \ work-packages/testing-and-validation.html \ work-packages/transformation.html all: $(DOCUMENTS) home.html: $(TEMPLATESROOT)/home.html cp $(TEMPLATESROOT)/home.html . index.html: $(TEMPLATESROOT)/index.html cp $(TEMPLATESROOT)/index.html . menu.html: $(TEMPLATESROOT)/menu.html cp $(TEMPLATESROOT)/menu.html . consortium.html: $(XMLROOT)/consortium.xml \ $(XSLROOT)/consortium.xsl xsltproc -o $@ $(XSLROOT)/consortium.xsl $(XMLROOT)/consortium.xml project.html: $(XMLROOT)/project.xml \ $(XSLROOT)/project.xsl xsltproc -o $@ $(XSLROOT)/project.xsl $(XMLROOT)/project.xml sites/%.html: $(XMLROOT)/$(@:%.html=%.xml) \ $(XSLROOT)/site.xsl xsltproc -o $@ $(XSLROOT)/site.xsl $(XMLROOT)/$(@:%.html=%.xml) people/%.html: $(XMLROOT)/$(@:%.html=%.xml) \ $(XSLROOT)/person.xsl xsltproc -o $@ $(XSLROOT)/person.xsl $(XMLROOT)/$(@:%.html=%.xml) publications/%.html: $(XMLROOT)/$(@:%.html=%.xml) \ $(XSLROOT)/publication.xsl xsltproc -o $@ $(XSLROOT)/publication.xsl $(XMLROOT)/$(@:%.html=%.xml) work-packages/%.html: $(XMLROOT)/$(@:%.html=%.xml) \ $(XSLROOT)/work-package.xsl xsltproc -o $@ $(XSLROOT)/work-package.xsl $(XMLROOT)/$(@:%.html=%.xml) clean: rm -f $(DOCUMENTS) .PHONY: clean