]> matita.cs.unibo.it Git - helm.git/blob - helm/mowgli/home/html/Makefile
The Work-Packages index page is no more a static HTML page, but it is
[helm.git] / helm / mowgli / home / html / Makefile
1 TEMPLATESROOT = ../templates
2 XMLROOT = ../xml
3 XSLROOT = ../xsl
4 DOCUMENTS = \
5             index.html \
6             home.html \
7             menu.html \
8             consortium.html \
9             project.html \
10             news.html \
11             sites/aei.html \
12             sites/bologna.html \
13             sites/dfki.html \
14             sites/inria.html \
15             sites/nijmegen.html \
16             sites/trusted-logic.html \
17             people/aei/kelley.html \
18             people/aei/schutz.html \
19             people/aei/velden.html \
20             people/aei/wegner.html \
21             people/bologna/asperti.html \
22             people/bologna/guidi.html \
23             people/bologna/padovani.html \
24             people/bologna/sacerdoti.html \
25             people/bologna/schena.html \
26             people/dfki/kohlhase.html \
27             people/dfki/melis.html \
28             people/dfki/siekmann.html \
29             people/inria/amerkad.html \
30             people/inria/bertot.html \
31             people/inria/chicli.html \
32             people/inria/delahaye.html \
33             people/inria/herbelin.html \
34             people/inria/naciri.html \
35             people/inria/pottier.html \
36             people/inria/rideau.html \
37             people/inria/thery.html \
38             people/nijmegen/barendregt.html \
39             people/nijmegen/barreiro.html \
40             people/nijmegen/cohen.html \
41             people/nijmegen/cruz-filipe.html \
42             people/nijmegen/geuvers.html \
43             people/nijmegen/niqui.html \
44             people/nijmegen/stein.html \
45             people/nijmegen/synek.html \
46             people/nijmegen/wiedijk.html \
47             people/trusted-logic/bolignano.html \
48             publications/others/category_al.html \
49             publications/others/crimea2001_apss.html \
50             publications/others/cup_s.html \
51             publications/others/cup_s2.html \
52             publications/others/extreme2001_apss.html \
53             publications/others/har_bg.html \
54             publications/others/jep_ws.html \
55             publications/others/jep_wwsw.html \
56             publications/others/jlp2001_scg.html \
57             publications/others/mathml2000_apss.html \
58             publications/others/mscs_gb.html \
59             publications/others/tcs2001_og.html \
60             publications/others/tphols2000_gwz.html \
61             publications/others/tphols2001_apss.html \
62             work-packages/index.html \
63             work-packages/distribution.html \
64             work-packages/information-dissemination-and-exploitation.html \
65             work-packages/interfaces.html \
66             work-packages/metadata.html \
67             work-packages/project-management.html \
68             work-packages/requirement-analysis.html \
69             work-packages/testing-and-validation.html \
70             work-packages/transformation.html
71
72 all: $(DOCUMENTS)
73
74 home.html: $(TEMPLATESROOT)/home.html
75         cp $< $@
76
77 index.html: $(TEMPLATESROOT)/index.html
78         cp $< $@
79
80 menu.html: $(TEMPLATESROOT)/menu.html
81         sed s/\@DATE\@/"`date`"/ $< >$@
82
83 consortium.html: $(XMLROOT)/consortium.xml \
84                  $(XSLROOT)/consortium.xsl
85         xsltproc -o $@ $(XSLROOT)/consortium.xsl $<
86
87 project.html: $(XMLROOT)/project.xml \
88               $(XSLROOT)/project.xsl
89         xsltproc -o $@ $(XSLROOT)/project.xsl $<
90
91 news.html: $(XMLROOT)/news.xml \
92            $(XSLROOT)/news.xsl
93         xsltproc -o $@ $(XSLROOT)/news.xsl $<
94
95 sites/%.html: $(XMLROOT)/sites/%.xml \
96               $(XSLROOT)/site.xsl
97         xsltproc -o $@ $(XSLROOT)/site.xsl $<
98
99 people/%.html: $(XMLROOT)/people/%.xml \
100               $(XSLROOT)/person.xsl
101         xsltproc -o $@ $(XSLROOT)/person.xsl $<
102
103 publications/%.html: $(XMLROOT)/publications/%.xml \
104               $(XSLROOT)/publication.xsl
105         xsltproc -o $@ $(XSLROOT)/publication.xsl $<
106
107 work-packages/index.html: $(XMLROOT)/work-packages/index.xml \
108                           $(XSLROOT)/work-packages_index.xsl
109         xsltproc -o $@ $(XSLROOT)/work-packages_index.xsl $<
110         
111 work-packages/%.html: $(XMLROOT)/work-packages/%.xml \
112               $(XSLROOT)/work-package.xsl
113         xsltproc -o $@ $(XSLROOT)/work-package.xsl $<
114
115 clean:
116         rm -f $(DOCUMENTS)
117 .PHONY: clean
118
119 $(XSLROOT)/%.xsl : $(XSLROOT)/common.xsl
120