blob: fd867401dec794192e63255d935b96269b2b1c01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
## Process this file with automake to create Makefile.in.
# The name of the module.
DOC_MODULE=vte
# The top-level SGML file.
DOC_MAIN_SGML_FILE=vte-docs.sgml
# The directory containing the source code. Relative to $(srcdir)
DOC_SOURCE_DIR=../../src
# Used for dependencies
HFILE_GLOB= $(top_srcdir)/src/*.h
CFILE_GLOB=$(top_srcdir)/src/*.c
IGNORE_HFILES= \
buffer.h \
caps.h \
debug.h \
iso2022.h \
keymap.h \
marshal.h \
matcher.h \
ring.h \
table.h \
trie.h \
vtebg.h \
vteconv.h \
vtedraw.h \
vtefc.h \
vteft2.h \
vtegl.h \
vteglyph.h \
vteint.h \
vtepango.h \
vtepangox.h \
vte-private.h \
vterdb.h \
vteregex.h \
vtergb.h \
vteseq.h \
vteseq-list.h \
vteseq-table.h \
vteskel.h \
vtetc.h \
vtetree.h \
vtexft.h
# CFLAGS and LDFLAGS for compiling scan program. Only needed
# if $(DOC_MODULE).types is non-empty.
GTKDOC_CFLAGS = $(VTE_CFLAGS) -I$(top_srcdir)/src
GTKDOC_LIBS = $(top_builddir)/src/libvte.la
# Extra options to supply to gtkdoc-mkdb
MKDB_OPTIONS=--sgml-mode --output-format=xml
# Extra options to supply to gtkdoc-fixref
FIXXREF_OPTIONS=
MAINTAINERCLEANFILES = vte-undocumented.txt
include $(top_srcdir)/gtk-doc.make
EXTRA_DIST += check.docs
TESTS = check.docs
|