~ubuntu-branches/debian/wheezy/avant-window-navigator/wheezy

« back to all changes in this revision

Viewing changes to doc/reference/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne
  • Date: 2008-05-24 14:42:01 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080524144201-r3v8e4g2hv2q1i9x
Tags: 0.2.6-6
* debian/patches/04-fix-colormap.patch
 - Fix crash in awn-manager if colormap == None. Thanks Emme for the 
   patch. (Closes: #482030) 

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
NULL = 
 
7
 
 
8
# This is a blank Makefile.am for using gtk-doc.
 
9
# Copy this to your project's API docs directory and modify the variables to
 
10
# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
 
11
# of using the various options.
 
12
 
 
13
# The name of the module, e.g. 'glib'.
 
14
DOC_MODULE=libawn
 
15
 
 
16
# The top-level SGML file. You can change this if you want to.
 
17
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
 
18
 
 
19
# The directory containing the source code. Relative to $(srcdir).
 
20
# gtk-doc will search all .c & .h files beneath here for inline comments
 
21
# documenting the functions and macros.
 
22
# e.g. DOC_SOURCE_DIR=../../../gtk
 
23
DOC_SOURCE_DIR=../../libawn
 
24
 
 
25
# Extra options to pass to gtkdoc-scangobj. Not normally needed.
 
26
SCANGOBJ_OPTIONS=
 
27
 
 
28
# Extra options to supply to gtkdoc-scan.
 
29
# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED" 
 
30
SCAN_OPTIONS=
 
31
 
 
32
# Extra options to supply to gtkdoc-mkdb.
 
33
# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
 
34
MKDB_OPTIONS=--sgml-mode --output-format=xml
 
35
 
 
36
# Extra options to supply to gtkdoc-mktmpl
 
37
# e.g. MKTMPL_OPTIONS=--only-section-tmpl
 
38
MKTMPL_OPTIONS=
 
39
 
 
40
# Extra options to supply to gtkdoc-fixref. Not normally needed.
 
41
# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
 
42
FIXXREF_OPTIONS=
 
43
 
 
44
# Used for dependencies. The docs will be rebuilt if any of these change.
 
45
# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
 
46
# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
 
47
HFILE_GLOB=$(top_srcdir)/libawn/*.h
 
48
CFILE_GLOB=$(top_srcdir)/libawn/*.c
 
49
 
 
50
# Header files to ignore when scanning.
 
51
# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
 
52
IGNORE_HFILES=
 
53
 
 
54
# Images to copy into HTML directory.
 
55
# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
 
56
HTML_IMAGES=
 
57
 
 
58
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
 
59
# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
 
60
content_files=
 
61
 
 
62
# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
 
63
# These files must be listed here *and* in content_files
 
64
# e.g. expand_content_files=running.sgml
 
65
expand_content_files=
 
66
 
 
67
# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
 
68
# Only needed if you are using gtkdoc-scangobj to dynamically query widget
 
69
# signals and properties.
 
70
# e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
 
71
# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
 
72
INCLUDES = \
 
73
        $(AWN_CFLAGS)                   \
 
74
        -I$(top_srcdir)                 \
 
75
        -I$(top_builddir)/libawn        \
 
76
        -I$(top_builddir)               \
 
77
        $(NULL)
 
78
 
 
79
GTKDOC_LIBS = \
 
80
        $(AWN_LIBS)                                                     \
 
81
        $(top_builddir)/libawn/libawn.la        \
 
82
        $(NULL)
 
83
 
 
84
# This includes the standard gtk-doc make rules, copied by gtkdocize.
 
85
include $(top_srcdir)/gtk-doc.make
 
86
 
 
87
# Other files to distribute
 
88
# e.g. EXTRA_DIST += version.xml.in
 
89
EXTRA_DIST +=