~ubuntu-branches/ubuntu/breezy/libgnomecanvas/breezy

« back to all changes in this revision

Viewing changes to docs/reference/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2004-09-13 22:40:39 UTC
  • Revision ID: james.westby@ubuntu.com-20040913224039-giftt9jhvyoorcuv
Tags: upstream-2.8.0
ImportĀ upstreamĀ versionĀ 2.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
AUTOMAKE_OPTIONS = 1.6
 
4
 
 
5
# The name of the module, e.g. 'glib'.
 
6
DOC_MODULE=libgnomecanvas
 
7
 
 
8
# The top-level SGML file. Change it if you want.
 
9
DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
 
10
 
 
11
# Extra options to supply to gtkdoc-scan.
 
12
SCAN_OPTIONS=
 
13
 
 
14
# The directory containing the source code. Relative to $(srcdir).
 
15
# gtk-doc will search all .c & .h files beneath here for inline comments
 
16
# documenting functions and macros.
 
17
DOC_SOURCE_DIR=../../libgnomecanvas
 
18
 
 
19
# Used for dependencies.
 
20
HFILE_GLOB=$(top_srcdir)/libgnomecanvas/*.h
 
21
CFILE_GLOB=$(top_srcdir)/libgnomecanvas/*.c
 
22
 
 
23
# Header files to ignore when scanning.
 
24
IGNORE_HFILES=gnome-canvas-shape-private.h gnome-canvas-i18n.h \
 
25
  gnome-canvas-marshal.h
 
26
 
 
27
# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib
 
28
# contains GtkObjects/GObjects and you want to document signals and properties.
 
29
INCLUDES = -I$(top_srcdir) $(LIBGNOMECANVAS_CFLAGS)
 
30
GTKDOC_LIBS = $(top_builddir)/libgnomecanvas/libgnomecanvas-2.la \
 
31
  $(LIBGNOMECANVAS_LIBS)
 
32
 
 
33
# Extra options to supply to gtkdoc-mkdb.
 
34
MKDB_OPTIONS=--sgml-mode --output-format=xml
 
35
 
 
36
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
 
37
content_files =
 
38
 
 
39
# Images to copy into HTML directory.
 
40
HTML_IMAGES =
 
41
 
 
42
# Extra options to supply to gtkdoc-fixref.
 
43
FIXXREF_OPTIONS=
 
44
 
 
45
include $(top_srcdir)/gtk-doc.make