Revision 3b0d469965812f5e1c045f308020344729d7b2aa authored by Hugh Cayless on 07 October 2015, 02:03:59 UTC, committed by Hugh Cayless on 07 October 2015, 02:03:59 UTC
1 parent 92bbe60
Raw File
Makefile
PREFIX=/usr
TEISERVER=http://localhost/Query/

schema:
	roma --localsource=../../P5/Source-driver.xml --dochtml teilite.xml .

install: schema
	mkdir -p ${PREFIX}/share/xml/tei/schema/relaxng/p5
	mkdir -p ${PREFIX}/share/xml/tei/schema/dtd/p5
	mkdir -p ${PREFIX}/share/xml/tei/schema/xsd/p5
	mv teilite.rnc teilite.rng ${PREFIX}/share/xml/tei/schema/relaxng/p5
	mv teilite.dtd ${PREFIX}/share/xml/tei/schema/dtd/p5
	mv teilite.xsd ${PREFIX}/share/xml/tei/schema/xsd/p5
	mkdir -p ${PREFIX}/share/doc/tei/Lite
	mv Guidelines teilite.doc.xml ${PREFIX}/share/doc/tei/Lite

clean:
	-rm -rf teilite.rnc teilite.xsd teilite.rng teilite.dtd teilite.doc.xml xml.xsd Guidelines *~


back to top