~ubuntu-branches/ubuntu/precise/evince/precise-updates

« back to all changes in this revision

Viewing changes to help/reference/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2009-02-10 15:24:04 UTC
  • mto: (1.6.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 72.
  • Revision ID: james.westby@ubuntu.com-20090210152404-9el29bkm4unsnj6n
Tags: upstream-2.25.90
ImportĀ upstreamĀ versionĀ 2.25.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
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=evince
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=../../shell --source-dir=../../libdocument --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
 
# Extra options to supply to gtkdoc-fixref. Not normally needed.
39
 
# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
40
 
FIXXREF_OPTIONS=
41
 
 
42
 
# Used for dependencies. The docs will be rebuilt if any of these change.
43
 
# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
44
 
# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
45
 
HFILE_GLOB=$(top_srcdir)/shell/*.h $(top_srcdir)/libdocument/*.h
46
 
CFILE_GLOB=$(top_srcdir)/shell/*.c $(top_srcdir)/libdocument/*.c
47
 
 
48
 
# Header files to ignore when scanning.
49
 
# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
50
 
IGNORE_HFILES=  \
51
 
ev-backend-marshal.c \
52
 
ev-backend-marshalers.h \
53
 
ev-backend-marshalers.c \
54
 
ev-marshal.h \
55
 
ev-marshal.c 
56
 
 
57
 
# Images to copy into HTML directory.
58
 
# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
59
 
HTML_IMAGES=
60
 
 
61
 
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
62
 
# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
63
 
content_files=
64
 
 
65
 
# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
66
 
# These files must be listed here *and* in content_files
67
 
# e.g. expand_content_files=running.sgml
68
 
expand_content_files=
69
 
 
70
 
# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
71
 
# Only needed if you are using gtkdoc-scangobj to dynamically query widget
72
 
# signals and properties.
73
 
# e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
74
 
# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
75
 
INCLUDES= \
76
 
        -I$(top_srcdir)/shell \
77
 
        -DDATADIR=\"$(pkgdatadir)\"                     \
78
 
        -DGNOMEDATADIR=\"$(datadir)\"                   \
79
 
        -I$(top_srcdir)/cut-n-paste/zoom-control/       \
80
 
        -I$(top_srcdir)/cut-n-paste/toolbar-editor/     \
81
 
        -I$(top_srcdir)/cut-n-paste/totem-screensaver/  \
82
 
        -I$(top_srcdir)/libdocument                     \
83
 
        -I$(top_builddir)/libdocument                   \
84
 
        -I$(top_srcdir)/libview                         \
85
 
        -I$(top_builddir)/libview                               \
86
 
        -I$(top_srcdir)/properties                      \
87
 
        -DGNOMELOCALEDIR=\"$(datadir)/locale\"          \
88
 
        -DGNOMEICONDIR=\""$(datadir)/pixmaps"\"         \
89
 
        $(SHELL_CFLAGS)                                 \
90
 
        $(WARN_CFLAGS)                                  \
91
 
        $(DISABLE_DEPRECATED)                           \
92
 
        $(GNOME_PRINT_CFLAGS)                           \
93
 
        $(GTK_PRINT_CFLAGS)
94
 
 
95
 
GTKDOC_LIBS= \
96
 
        $(top_builddir)/cut-n-paste/zoom-control/libephyzoom.la         \
97
 
        $(top_builddir)/cut-n-paste/toolbar-editor/libtoolbareditor.la  \
98
 
        $(top_builddir)/cut-n-paste/totem-screensaver/libtotemscrsaver.la       \
99
 
        $(top_builddir)/cut-n-paste/gedit-message-area/libgeditmsgarea.la       \
100
 
        $(top_builddir)/cut-n-paste/evmountoperation/libevmountoperation.la     \
101
 
        $(top_builddir)/cut-n-paste/gimpcellrenderertoggle/libgimpcellrenderertoggle.la \
102
 
        $(top_builddir)/cut-n-paste/smclient/libsmclient.la             \
103
 
        $(top_builddir)/properties/libevproperties.la                   \
104
 
        $(top_builddir)/libdocument/libevbackend.la                     \
105
 
        $(top_builddir)/libview/libevview.la                            \
106
 
        $(SHELL_LIBS)                                                   \
107
 
        $(GNOME_PRINT_LIBS)                                             \
108
 
        $(filter-out ../../shell/main.o,$(wildcard ../../shell/*.o))
109
 
 
110
 
if ENABLE_DJVU
111
 
GTKDOC_LIBS +=  $(DJVU_LIBS)
112
 
endif
113
 
 
114
 
if ENABLE_DVI
115
 
GTKDOC_LIBS +=  -lkpathsea
116
 
endif
117
 
 
118
 
if WITH_TYPE1_FONTS
119
 
GTKDOC_LIBS += -lt1
120
 
endif
121
 
 
122
 
# This includes the standard gtk-doc make rules, copied by gtkdocize.
123
 
include $(top_srcdir)/gtk-doc.make
124
 
 
125
 
# Other files to distribute
126
 
# e.g. EXTRA_DIST += version.xml.in
127
 
EXTRA_DIST += version.xml.in
 
1
SUBDIRS = libdocument libview shell
 
 
b'\\ No newline at end of file'