mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
6fee15adad
Original commit message from CVS: no more admonition graphics (those pointing fingers beside 'notes' et al) because there's no standard path to find them.
23 lines
730 B
Makefile
23 lines
730 B
Makefile
DOC=gst-plugin-writers-guide
|
|
MAIN=$(DOC).xml
|
|
XML=$(shell echo *.xml)
|
|
XSLFO=$(srcdir)/../xsl/fo.xsl
|
|
XSLFOMODS=$(srcdir)/../xsl/ulink.xsl $(srcdir)/../xsl/keycombo.xsl
|
|
XSLHTML=$(srcdir)/../xsl/html.xsl
|
|
XSLHTMLMODS=$(srcdir)/../xsl/fileext.xsl $(srcdir)/../xsl/admon.xsl \
|
|
$(srcdir)/../xsl/keycombo.xsl $(srcdir)/../xsl/css.xsl
|
|
XSLS=$(XSLFO) $(XSLFOMODS) $(XSLHTML) $(XSLHTMLMODS)
|
|
FIGS= # $(shell echo *.fig) (uncomment when pngs are added)
|
|
PNGS=$(FIGS:.fig=.png)
|
|
PDFS=$(FIGS:.fig=.pdf)
|
|
SRC=$(XML)
|
|
CSS=base.css
|
|
|
|
EXTRA_DIST = $(XML) $(FIGS)
|
|
|
|
## FIXME if we don't do this they don't get cleaned up in make distcheck
|
|
## but maybe this is not the best way to do it
|
|
CONFIG_CLEAN_FILES = $(XML) $(FIGS)
|
|
|
|
include $(srcdir)/../manuals.mak
|
|
|