2003-10-08 14:34:09 +00:00
|
|
|
### this is the part you can customize if you need to
|
2002-10-19 09:15:52 +00:00
|
|
|
|
2003-10-08 14:34:09 +00:00
|
|
|
# base name of doc
|
2003-10-08 14:38:48 +00:00
|
|
|
DOC = faq
|
2004-01-28 12:16:51 +00:00
|
|
|
# formats defined for upload.mak
|
|
|
|
FORMATS=html ps pdf
|
2003-10-08 14:34:09 +00:00
|
|
|
|
|
|
|
# main xml file
|
|
|
|
MAIN = $(DOC).xml
|
|
|
|
# all xml sources
|
|
|
|
XML = $(notdir $(wildcard $(srcdir)/*.xml))
|
|
|
|
# base style sheet
|
|
|
|
CSS = base.css
|
|
|
|
|
|
|
|
# image sources
|
|
|
|
PNG_SRC =
|
|
|
|
FIG_SRC = $(notdir $(wildcard $(srcdir)/*.fig))
|
|
|
|
|
2004-02-16 15:47:23 +00:00
|
|
|
# extra sources to copy in build directory
|
2005-05-02 11:47:17 +00:00
|
|
|
EXTRA_SRC = gst-uninstalled
|
2004-02-16 15:47:23 +00:00
|
|
|
|
2003-10-08 14:34:09 +00:00
|
|
|
### this is the generic bit and you shouln't need to change this
|
|
|
|
|
|
|
|
# get the generic docbuilding Makefile stuff
|
2002-10-19 09:15:52 +00:00
|
|
|
include $(srcdir)/../manuals.mak
|
2004-01-28 12:16:51 +00:00
|
|
|
# get the generic upload target
|
|
|
|
include $(srcdir)/../upload.mak
|
2002-11-04 18:06:20 +00:00
|
|
|
|
2003-10-08 14:34:09 +00:00
|
|
|
### this is standard automake stuff
|
2004-02-16 15:57:17 +00:00
|
|
|
|
2003-10-08 14:34:09 +00:00
|
|
|
# package up all the source
|
|
|
|
EXTRA_DIST = $(SRC)
|
2004-02-16 15:57:17 +00:00
|
|
|
|
2003-10-08 14:34:09 +00:00
|
|
|
# install documentation
|
2005-09-03 13:49:49 +00:00
|
|
|
faqdir = $(docdir)/$(DOC)
|
|
|
|
faq_DATA = $(PDF_DAT) $(PS_DAT)
|
2004-02-16 15:57:17 +00:00
|
|
|
|
2003-10-08 14:34:09 +00:00
|
|
|
include $(srcdir)/../htmlinstall.mak
|