TEMPLATESROOT = ../templates XMLROOT = ../xml XSLROOT = ../xsl DOCUMENTS = \ index.html \ home.html \ menu.html \ consortium.html \ project.html \ news.html \ deliverables/distribution/d5a.html \ deliverables/distribution/d5b.html \ deliverables/information-dissemination-and-exploitation/d7a.html \ deliverables/information-dissemination-and-exploitation/d7b.html \ deliverables/interfaces/d4a.html \ deliverables/interfaces/d4b.html \ deliverables/interfaces/d4c.html \ deliverables/interfaces/d4d.html \ deliverables/interfaces/d4e.html \ deliverables/metadata/d3a.html \ deliverables/metadata/d3b.html \ deliverables/project-management/d0a.html \ deliverables/project-management/d0b.html \ deliverables/project-management/d0c.html \ deliverables/project-management/d0d.html \ deliverables/requirement-analysis/d1a.html \ deliverables/requirement-analysis/d1b.html \ deliverables/requirement-analysis/d1c.html \ deliverables/testing-and-validation/d6a.html \ deliverables/testing-and-validation/d6b.html \ deliverables/testing-and-validation/d6c.html \ deliverables/testing-and-validation/d6d.html \ deliverables/transformation/d2a.html \ deliverables/transformation/d2b.html \ deliverables/transformation/d2c.html \ deliverables/transformation/d2d.html \ deliverables/transformation/d2e.html \ deliverables/transformation/d2f.html \ deliverables/transformation/d2g.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/index.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 $< $@ index.html: $(TEMPLATESROOT)/index.html cp $< $@ menu.html: $(TEMPLATESROOT)/menu.html sed s/\@DATE\@/"`date`"/ $< >$@ consortium.html: $(XMLROOT)/consortium.xml \ $(XSLROOT)/consortium.xsl xsltproc -o $@ $(XSLROOT)/consortium.xsl $< project.html: $(XMLROOT)/project.xml \ $(XSLROOT)/project.xsl xsltproc -o $@ $(XSLROOT)/project.xsl $< news.html: $(XMLROOT)/news.xml \ $(XSLROOT)/news.xsl xsltproc -o $@ $(XSLROOT)/news.xsl $< deliverables/%.html: $(XMLROOT)/deliverables/%.xml \ $(XSLROOT)/deliverable.xsl xsltproc -o $@ $(XSLROOT)/deliverable.xsl $< sites/%.html: $(XMLROOT)/sites/%.xml \ $(XSLROOT)/site.xsl xsltproc -o $@ $(XSLROOT)/site.xsl $< people/%.html: $(XMLROOT)/people/%.xml \ $(XSLROOT)/person.xsl xsltproc -o $@ $(XSLROOT)/person.xsl $< publications/%.html: $(XMLROOT)/publications/%.xml \ $(XSLROOT)/publication.xsl xsltproc -o $@ $(XSLROOT)/publication.xsl $< work-packages/index.html: $(XMLROOT)/work-packages/index.xml \ $(XSLROOT)/work-packages_index.xsl xsltproc -o $@ $(XSLROOT)/work-packages_index.xsl $< work-packages/%.html: $(XMLROOT)/work-packages/%.xml \ $(XSLROOT)/work-package.xsl xsltproc -o $@ $(XSLROOT)/work-package.xsl $< clean: rm -f $(DOCUMENTS) .PHONY: clean $(XSLROOT)/%.xsl : $(XSLROOT)/common.xsl