gstreamer/docs/Makefile.am
David I. Lehn bb16c73875 kill docutils based docs (easy come, easy go) docbook based docs
Original commit message from CVS:
kill docutils based docs (easy come, easy go)
docbook based docs
2003-06-26 08:48:52 +00:00

21 lines
494 B
Makefile

XMLFILES = gst-python.xml
XSLFILES = common.xsl html.xsl
CSSFILES = gst-python.css
DOCS = gst-python.txt gst-python.html
all: $(DOCS)
gst-python.txt: gst-python.xml
xmlto txt $<
# cp gst-python.txt $(top_builddir)/../README
gst-python.html: gst-python.xml common.xsl html.xsl
xmlto -m common.xsl -m html.xsl xhtml-nochunks $<
gst-python.pdf: gst-python.xml common.xsl pdf.xsl
xmlto -m common.xsl -m pdf.xsl pdf $<
CLEANFILES = $(DOCS)
EXTRA_DIST = $(XMLFILES) $(XSLFILES) $(CSSFILES)