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))
|
|
|
|
|
|
|
|
### 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
|
|
|
|
|
|
|
|
# package up all the source
|
|
|
|
EXTRA_DIST = $(SRC)
|
|
|
|
|
|
|
|
# install documentation
|
|
|
|
docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)/$(DOC)
|
|
|
|
doc_DATA = $(PDF_DAT) $(PS_DAT)
|
|
|
|
|
|
|
|
include $(srcdir)/../htmlinstall.mak
|