From: Norman Walsh Date: Mon, 2 Apr 2001 13:46:11 +0000 (+0000) Subject: Make common files X-Git-Tag: release/1.79.1~6^2~6654 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=60f019dd7c52237c873a5778e96c5769fd03993e;p=docbook-dsssl Make common files --- diff --git a/xsl/Makefile b/xsl/Makefile index 691f428df..aa2c45cf4 100644 --- a/xsl/Makefile +++ b/xsl/Makefile @@ -3,10 +3,10 @@ DIFFVER= .PHONY : distrib clean doc all: + cd common; make cd html; make cd fo; make cd extensions; make - cvs -n update doc: cd docsrc; make diff --git a/xsl/common/.cvsignore b/xsl/common/.cvsignore new file mode 100644 index 000000000..3930f7d46 --- /dev/null +++ b/xsl/common/.cvsignore @@ -0,0 +1,27 @@ +ca.xml +cs.xml +da.xml +de.xml +el.xml +en.xml +es.xml +et.xml +fi.xml +fr.xml +hu.xml +id.xml +it.xml +ja.xml +ko.xml +nl.xml +no.xml +pl.xml +pt.xml +pt_br.xml +ro.xml +ru.xml +sk.xml +sl.xml +sv.xml +zh_cn.xml +zh_tw.xml diff --git a/xsl/common/Makefile b/xsl/common/Makefile new file mode 100644 index 000000000..7b6155af2 --- /dev/null +++ b/xsl/common/Makefile @@ -0,0 +1,44 @@ +XSLT=../../cvstools/saxon +XJPARSE=../../cvstools/xjparse + +SOURCES=ca.xml cs.xml da.xml de.xml el.xml en.xml es.xml et.xml fi.xml \ + fr.xml hu.xml id.xml it.xml ja.xml ko.xml nl.xml no.xml pl.xml \ + pt.xml pt_br.xml ro.xml ru.xml sk.xml sl.xml sv.xml zh_cn.xml \ + zh_tw.xml + +all: $(SOURCES) + +ca.xml: ../../gentext/locale/ca.xml +cs.xml: ../../gentext/locale/cs.xml +da.xml: ../../gentext/locale/da.xml +de.xml: ../../gentext/locale/de.xml +el.xml: ../../gentext/locale/el.xml +en.xml: ../../gentext/locale/en.xml +es.xml: ../../gentext/locale/es.xml +et.xml: ../../gentext/locale/et.xml +fi.xml: ../../gentext/locale/fi.xml +fr.xml: ../../gentext/locale/fr.xml +hu.xml: ../../gentext/locale/hu.xml +id.xml: ../../gentext/locale/id.xml +it.xml: ../../gentext/locale/it.xml +ja.xml: ../../gentext/locale/ja.xml +ko.xml: ../../gentext/locale/ko.xml +nl.xml: ../../gentext/locale/nl.xml +no.xml: ../../gentext/locale/no.xml +pl.xml: ../../gentext/locale/pl.xml +pt.xml: ../../gentext/locale/pt.xml +pt_br.xml: ../../gentext/locale/pt_br.xml +ro.xml: ../../gentext/locale/ro.xml +ru.xml: ../../gentext/locale/ru.xml +sk.xml: ../../gentext/locale/sk.xml +sl.xml: ../../gentext/locale/sl.xml +sv.xml: ../../gentext/locale/sv.xml +zh_cn.xml: ../../gentext/locale/zh_cn.xml +zh_tw.xml: ../../gentext/locale/zh_tw.xml + +%.xml: + $(XJPARSE) -w $< + $(XSLT) $< ../../gentext/xsl/xsl.xsl $@ + +clean: + rm -f *.ent *.xml