~noasakurajin/xapp/master

« back to all changes in this revision

Viewing changes to docs/reference/Makefile.am

  • Committer: GitHub
  • Author(s): Clement Lefebvre
  • Date: 2017-03-24 13:35:39 UTC
  • mfrom: (29.2.1)
  • Revision ID: git-v1:391d58671d116513c4b2e3a779d4d5129b5a0e58
Merge pull request #21 from JosephMcc/doc-support

Add support for building gtk-doc

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
# see /gtk-doc/examples/Makefile.am
 
4
 
 
5
# We require automake 1.6 at least.
 
6
AUTOMAKE_OPTIONS = 1.6
 
7
 
 
8
# The name of the module, e.g. 'glib'.
 
9
DOC_MODULE = xapp
 
10
 
 
11
# The top-level XML file (SGML in the past).
 
12
DOC_MAIN_SGML_FILE = xapp-docs.xml
 
13
 
 
14
# The directory containing the source code. Relative to $(srcdir).
 
15
DOC_SOURCE_DIR = $(top_srcdir)/libxapp
 
16
 
 
17
# Extra options to supply to gtkdoc-scan.
 
18
# e.g. SCAN_OPTIONS = --deprecated-guards="GTK_DISABLE_DEPRECATED"
 
19
SCAN_OPTIONS = --rebuild-types
 
20
 
 
21
# Extra options to supply to gtkdoc-mkdb.
 
22
MKDB_OPTIONS = --xml-mode --output-format=xml
 
23
 
 
24
# Used for dependencies. The docs will be rebuilt if any of these change.
 
25
HFILE_GLOB = $(top_srcdir)/libxapp/*.h
 
26
CFILE_GLOB = $(top_srcdir)/libxapp/*.c
 
27
 
 
28
# Header files to ignore when scanning (These are internal to xed).
 
29
IGNORE_HFILES =
 
30
 
 
31
# Images to copy into HTML directory.
 
32
HTML_IMAGES =
 
33
 
 
34
# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
 
35
content_files =
 
36
 
 
37
# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
 
38
# Only needed if you are using gtkdoc-scangobj to dynamically query widget
 
39
# signals and properties.
 
40
GTKDOC_CFLAGS =
 
41
 
 
42
GTKDOC_LIBS =                       \
 
43
    $(top_builddir)/libxapp/libxapp.la   \
 
44
    $(XAPP_LIBS)
 
45
 
 
46
MAINTAINERCLEANFILES = xapp.types
 
47
 
 
48
# This includes the standard gtk-doc make rules, copied by gtkdocize.
 
49
include $(top_srcdir)/gtk-doc.make
 
50
 
 
51
-include $(top_srcdir)/git.mk
 
 
b'\\ No newline at end of file'