Initialize Tizen 2.3
[framework/multimedia/gstreamer0.10.git] / wearable / 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-doc.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 = $(notdir $(wildcard $(srcdir)/*.png))
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 shouldn'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 $(top_srcdir)/common/upload-doc.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