]> www.fi.muni.cz Git - evince.git/blob - help/reference/libview/Makefile.am
1f9f94d313c5bd05da75a2f1c7d43b43e082df88
[evince.git] / help / reference / libview / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # We require automake 1.6 at least.
4 AUTOMAKE_OPTIONS = 1.6
5
6 # This is a blank Makefile.am for using gtk-doc.
7 # Copy this to your project's API docs directory and modify the variables to
8 # suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
9 # of using the various options.
10
11 # The name of the module, e.g. 'glib'.
12 DOC_MODULE=libevview
13
14 # The top-level SGML file. You can change this if you want to.
15 DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
16
17 # The directory containing the source code. Relative to $(srcdir).
18 # gtk-doc will search all .c & .h files beneath here for inline comments
19 # documenting the functions and macros.
20 # e.g. DOC_SOURCE_DIR=../../../gtk
21 DOC_SOURCE_DIR=../../../libview
22
23 # Extra options to pass to gtkdoc-scangobj. Not normally needed.
24 SCANGOBJ_OPTIONS=
25
26 # Extra options to supply to gtkdoc-scan.
27 # e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED" 
28 SCAN_OPTIONS=
29
30 # Extra options to supply to gtkdoc-mkdb.
31 # e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
32 MKDB_OPTIONS=--sgml-mode --output-format=xml
33
34 # Extra options to supply to gtkdoc-mktmpl
35 # e.g. MKTMPL_OPTIONS=--only-section-tmpl
36 MKTMPL_OPTIONS=
37
38 # Add the builddir to the HTML path so that version.xml is found
39 MKHTML_OPTIONS=--path="$(abs_builddir)"
40
41 # Extra options to supply to gtkdoc-fixref. Not normally needed.
42 # e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
43 FIXXREF_OPTIONS=
44
45 # Used for dependencies. The docs will be rebuilt if any of these change.
46 # e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
47 # e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
48 HFILE_GLOB=$(top_srcdir)/libview/*.h
49 CFILE_GLOB=$(top_srcdir)/libview/*.c
50
51 # Header files to ignore when scanning.
52 # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
53 IGNORE_HFILES=  \
54         ev-pixbuf-cache.h               \
55         ev-timeline.h                   \
56         ev-transition-animation.h       \
57         ev-view-accessible.h            \
58         ev-view-marshal.h               \
59         ev-view-private.h
60
61 # Images to copy into HTML directory.
62 # e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
63 HTML_IMAGES=
64
65 # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
66 # e.g. content_files=running.sgml building.sgml changes-2.0.sgml
67 content_files= \
68         version.xml
69
70 # SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
71 # These files must be listed here *and* in content_files
72 # e.g. expand_content_files=running.sgml
73 expand_content_files=
74
75 # CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
76 # Only needed if you are using gtkdoc-scangobj to dynamically query widget
77 # signals and properties.
78 # e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
79 # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
80 INCLUDES= \
81         -I$(top_srcdir)                                 \
82         -I$(top_builddir)                               \
83         -I$(top_srcdir)/libview                         \
84         -DDATADIR=\"$(pkgdatadir)\"                     \
85         -DGNOMEDATADIR=\"$(datadir)\"                   \
86         -DEVINCE_UIDIR=\"$(pkgdatadir)\"                \
87         -DGNOMELOCALEDIR=\"$(datadir)/locale\"          \
88         -DEVINCE_COMPILATION                            \
89         -I$(top_srcdir)/libdocument                     \
90         -I$(top_builddir)/libdocument                   \
91         $(AM_CFLAGS)                                    \
92         $(LIBVIEW_CFLAGS)                               \
93         $(WARN_CFLAGS)                                  \
94         $(DISABLE_DEPRECATED)
95
96 GTKDOC_LIBS=                                            \
97         $(top_builddir)/libview/libevview.la            \
98         $(top_builddir)/libdocument/libevdocument.la    \
99         $(LIBVIEW_LIBS)
100
101 # This includes the standard gtk-doc make rules, copied by gtkdocize.
102 include $(top_srcdir)/gtk-doc.make
103
104 # Other files to distribute
105 # e.g. EXTRA_DIST += version.xml.in
106 EXTRA_DIST += version.xml.in
107
108 -include $(top_srcdir)/git.mk