2003-10-08 14:34:09 +00:00
|
|
|
### this is the part you can customize if you need to
|
2002-09-27 18:34:33 +00:00
|
|
|
|
2003-10-08 14:34:09 +00:00
|
|
|
# base name of doc
|
2003-10-08 14:59:36 +00:00
|
|
|
DOC = pwg
|
2009-06-11 12:16:29 +00:00
|
|
|
# formats defined for upload-doc.mak
|
2004-01-28 12:16:51 +00:00
|
|
|
FORMATS=html ps pdf
|
2002-09-27 18:34:33 +00:00
|
|
|
|
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:57:17 +00:00
|
|
|
# extra sources to copy in build directory
|
2005-05-02 11:47:17 +00:00
|
|
|
EXTRA_SRC =
|
2004-02-16 15:57:17 +00:00
|
|
|
|
2011-09-07 11:14:38 +00:00
|
|
|
### this is the generic bit and you shouldn't need to change this
|
2003-10-08 14:34:09 +00:00
|
|
|
|
|
|
|
# get the generic docbuilding Makefile stuff
|
2002-09-27 18:34:33 +00:00
|
|
|
include $(srcdir)/../manuals.mak
|
2004-01-28 12:16:51 +00:00
|
|
|
# get the generic upload target
|
2009-06-11 12:16:29 +00:00
|
|
|
include $(top_srcdir)/common/upload-doc.mak
|
2003-10-08 14:34:09 +00:00
|
|
|
|
|
|
|
### this is standard automake stuff
|
|
|
|
|
|
|
|
# package up all the source
|
|
|
|
EXTRA_DIST = $(SRC)
|
|
|
|
|
|
|
|
# install documentation
|
2005-09-03 13:49:49 +00:00
|
|
|
pwgdir = $(docdir)/$(DOC)
|
|
|
|
pwg_DATA = $(PDF_DAT) $(PS_DAT)
|
2003-10-08 14:34:09 +00:00
|
|
|
|
|
|
|
include $(srcdir)/../htmlinstall.mak
|