~ubuntu-branches/ubuntu/utopic/rhythmbox/utopic-proposed

« back to all changes in this revision

Viewing changes to doc/reference/Makefile.am

Tags: upstream-0.9.2
ImportĀ upstreamĀ versionĀ 0.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AUTOMAKE_OPTIONS = 1.6
 
2
 
 
3
DOC_MODULE=rhythmbox
 
4
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
 
5
DOC_SOURCE_DIR= ../../
 
6
 
 
7
# Extra options to supply to gtkdoc-mkdb.
 
8
MKDB_OPTIONS=--sgml-mode --output-format=xml
 
9
 
 
10
# Extra doc dir eg. --extra-dir=../html
 
11
FIXXREF_OPTIONS=
 
12
 
 
13
# Used for dependencies. The docs will be rebuilt if any of these change.
 
14
HFILE_GLOB=$(top_srcdir)/lib/*.h
 
15
CFILE_GLOB=$(top_srcdir)/lib/*.c
 
16
 
 
17
# Header files to ignore when scanning.
 
18
IGNORE_HFILES= \
 
19
        config.h \
 
20
        itunesdb.h \
 
21
        rb-cut-and-paste-code.h \
 
22
        rb-commander.h \
 
23
        rb-marshal.h \
 
24
        rb-nautilus-context-menu.h \
 
25
        rb-recorder-marshal.h \
 
26
        rb-remote-bonobo.h \
 
27
        rb-remote-client-proxy.h \
 
28
        rb-remote-common.h \
 
29
        rb-remote-dbus.h \
 
30
        rb-remote.h \
 
31
        rb-remote-proxy.h \
 
32
        Rhythmbox.h \
 
33
        rhythmdb-gda.h \
 
34
        rhythmdb-marshal.h \
 
35
        rhythmdb-private.h
 
36
 
 
37
INCLUDES=\
 
38
        -I$(top_srcdir) \
 
39
        -I$(top_builddir) \
 
40
        -I$(top_srcdir)/sources \
 
41
        -I$(top_srcdir)/shell \
 
42
        -I$(top_srcdir)/rhythmdb \
 
43
        -I$(top_srcdir)/player \
 
44
        -I$(top_srcdir)/metadata \
 
45
        -I$(top_srcdir)/widgets \
 
46
        -I$(top_srcdir)/lib \
 
47
        -I$(top_srcdir)/iradio \
 
48
        -I$(top_srcdir)/remote \
 
49
        -I$(top_srcdir)/daapsharing \
 
50
        $(DBUS_CFLAGS) \
 
51
        $(IPOD_CFLAGS) \
 
52
        $(RHYTHMBOX_CFLAGS)
 
53
        
 
54
GTKDOC_LIBS=\
 
55
        $(top_builddir)/shell/librbshell.la             \
 
56
        $(top_builddir)/sources/libsources.la           \
 
57
        $(top_builddir)/sources/libsourcesimpl.la       \
 
58
        $(top_builddir)/rhythmdb/librhythmdb.la         \
 
59
        $(top_builddir)/iradio/librbiradio.la           \
 
60
        $(top_builddir)/podcast/librbpodcast.la         \
 
61
        $(top_builddir)/remote/librbremote.la           \
 
62
        $(top_builddir)/player/librbplayer.la           \
 
63
        $(top_builddir)/metadata/librbmetadata.la       \
 
64
        $(top_builddir)/widgets/librbwidgets.la         \
 
65
        $(top_builddir)/lib/librb.la                    \
 
66
        $(top_builddir)/daapsharing/libdaapsharing.la   \
 
67
        $(TOTEM_PLPARSER_LIBS)                          \
 
68
        $(HAL_LIBS)                                     \
 
69
        $(LIBNAUTILUS_BURN_LIBS)                        \
 
70
        $(DBUS_LIBS)                                    \
 
71
        $(SOUP_LIBS)                                    \
 
72
        $(MDNS_LIBS)                                    \
 
73
        $(IPOD_LIBS)                                    \
 
74
        $(RHYTHMBOX_LIBS)
 
75
 
 
76
content_files =
 
77
HTML_IMAGES =
 
78
 
 
79
include $(top_srcdir)/gtk-doc.make
 
80