[Refdb-cvs] CVS: refdb/dtd Makefile.am,1.10.2.2,1.10.2.3
Status: Beta
Brought to you by:
mhoenicka
From: Markus H. <mho...@us...> - 2005-11-14 20:20:59
|
Update of /cvsroot/refdb/refdb/dtd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18035/dtd Modified Files: Tag: Release_0_9_5_stable Makefile.am Log Message: generate and distribute rng files from dtds Index: Makefile.am =================================================================== RCS file: /cvsroot/refdb/refdb/dtd/Makefile.am,v retrieving revision 1.10.2.2 retrieving revision 1.10.2.3 diff -u -U2 -r1.10.2.2 -r1.10.2.3 --- Makefile.am 4 Feb 2005 00:22:49 -0000 1.10.2.2 +++ Makefile.am 14 Nov 2005 20:20:52 -0000 1.10.2.3 @@ -3,9 +3,10 @@ objects = citestylex.dtd citationlistx.dtd risx.dtd xnote.dtd schemas = citestylex.rnc citationlistx.rnc risx.rnc xnote.rnc -install_objects = catalog $(objects) $(schemas) -EXTRA_DIST = $(objects) $(schemas) catalog.in -noinst_DATA = catalog $(schemas) +xschemas = citestylex.rng citationlistx.rng risx.rng xnote.rng +install_objects = catalog $(objects) $(schemas) $(xschemas) +EXTRA_DIST = $(objects) $(schemas) $(xschemas) catalog.in +noinst_DATA = catalog $(schemas) $(xschemas) MOSTLYCLEANFILES = catalog -MAINTAINERCLEANFILES = $(schemas) +MAINTAINERCLEANFILES = $(schemas) $(xschemas) RISXVERSION = $(shell grep DOCTYPE $(srcdir)/risx.dtd | sed 's%.*V\([^/]*\).*%\1%') @@ -25,4 +26,7 @@ @trang_cmd@ $< $@ +%.rng: %.dtd + @trang_cmd@ $< $@ + install-data-local: $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/dtd |