summaryrefslogtreecommitdiff
path: root/docs/manual/Makefile.am
blob: 7fdbb567ff532fa4206b103575249abd53a9e131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
### this is the part you can customize if you need to

# base name of doc
DOC = manual

# 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
include $(srcdir)/../manuals.mak

### 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