XML source files and XSL style sheet.

svn path=/trunk/; revision=149
This commit is contained in:
villate
2001-04-20 10:43:13 +00:00
parent 5aab2a3143
commit 47a8888829
13 changed files with 2605 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
pags = index.html contact.html mailinglists.html
pags.de = index.de.html
pags.fr = index.fr.html
all: $(pags) $(pags.de) $(pags.fr)
$(pags): %.html: %.xml menu.xml fsfe.xsl
sabcmd fsfe.xsl $< > $@
$(pags.de): %.html: %.xml menu.de.xml fsfe.de.xsl
sabcmd fsfe.de.xsl $< > $@
$(pags.fr): %.html: %.xml menu.fr.xml fsfe.fr.xsl
sabcmd fsfe.fr.xsl $< > $@