docs/manual/Makefile.am: don't do parallel make
[platform/upstream/gstreamer.git] / docs / manual / Makefile.am
1 ### this is the part you can customize if you need to
2
3 # parallel builds don't work, probably due to temporary files
4 MAKEFLAGS = -j1
5
6 # base name of doc
7 DOC = manual
8 # formats defined for upload.mak
9 FORMATS=html ps pdf
10
11 # main xml file
12 MAIN = $(DOC).xml
13 # all xml sources
14 XML = $(notdir $(wildcard $(srcdir)/*.xml))
15 # base style sheet
16 CSS = base.css
17
18 # image sources
19 PNG_SRC = 
20 FIG_SRC = $(notdir $(wildcard $(srcdir)/*.fig))
21
22 # extra sources to copy in build directory
23 EXTRA_SRC = 
24
25 ### this is the generic bit and you shouln't need to change this
26
27 # get the generic docbuilding Makefile stuff
28 include $(srcdir)/../manuals.mak
29 # get the generic upload target
30 include $(srcdir)/../upload.mak
31
32 ### this is standard automake stuff
33
34 # package up all the source
35 EXTRA_DIST = $(SRC) README
36
37 # install documentation
38 manualdir = $(docdir)/$(DOC)
39 manual_DATA = $(PDF_DAT) $(PS_DAT)
40
41 include $(srcdir)/../htmlinstall.mak