blob: 775d303c59ba32b6a5e80dcd9512e7baa0c38065 (
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
## Process this file with automake to create Makefile.in.
# The name of the module.
DOC_MODULE=pango
# The top-level SGML file.
DOC_MAIN_SGML_FILE=pango-docs.sgml
# Extra options to supply to gtkdoc-scan
SCAN_OPTIONS=--deprecated-guards="PANGO_DISABLE_DEPRECATED"
# The directory containing the source code. Relative to $(srcdir)
DOC_SOURCE_DIR=../pango
# Used for dependencies
HFILE_GLOB=$(top_srcdir)/pango/*.h
CFILE_GLOB=$(top_srcdir)/pango/*.c
# Headers to ignore
IGNORE_HFILES= \
mini-fribidi \
mini-xft \
module-defs.h \
opentype \
modules.h \
pangocairo-private.h \
pangocairo-fc.h \
pangocairo-win32.h \
pangocairo-atsui.h \
pango-color-table.h \
pango-engine-private.h \
pango-impl-utils.h \
pango-glyph-item-private.h \
pango-layout-private.h \
pango-script-table.h \
pango-utils.h \
pangofc-private.h \
pangoft2-private.h \
pangowin32-private.h \
pangoatsui-private.h \
pangox-private.h \
pangoxft-private.h \
pango-ot-private.h
# CFLAGS and LDFLAGS for compiling scan program. Only needed
# if $(DOC_MODULE).types is non-empty.
INCLUDES = \
-DPANGO_ENABLE_BACKEND \
-DPANGO_ENABLE_ENGINE \
-I$(top_srcdir) \
$(GLIB_CFLAGS) \
$(XFT_CFLAGS) \
$(CAIRO_CFLAGS) \
$(FREETYPE_CFLAGS) \
$(X_CFLAGS)
# libpangoxft.la pulls in libpango.la and libpangoft2.la;
# We're assuming here that we'll only regenerate the
# HTML docs on Unix. We don't get introspection on Win32
# specific types, but that isn't a bug deal.
GTKDOC_LIBS = \
$(top_builddir)/pango/libpangoxft-1.0.la
if HAVE_CAIRO
GTKDOC_LIBS += $(top_builddir)/pango/libpangocairo-1.0.la
endif
# Extra options to supply to gtkdoc-mkdb
MKDB_OPTIONS=--sgml-mode --output-format=xml
# Non-autogenerated SGML files to be included in $(DOC_MAIN_SGML_FILE)
content_files = \
pango_markup.sgml \
version.xml \
pango-querymodules.xml
# Images to copy into HTML directory
HTML_IMAGES = \
layout.gif \
rotated-text.png
# Extra options to supply to gtkdoc-fixref
FIXXREF_OPTIONS=
include $(top_srcdir)/gtk-doc.make
########################################################################
man_MANS = pango-querymodules.1
if ENABLE_MAN
%.1 : %.xml
@XSLTPROC@ -nonet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
endif
EXTRA_DIST += \
layout.fig \
layout.eps \
version.xml.in
BUILT_EXTRA_DIST = $(man_MANS)
dist-hook-local:
files='$(BUILT_EXTRA_DIST)'; \
for f in $$files; do \
if test -f $$f; then d=.; else d=$(srcdir); fi; \
cp $$d/$$f $(distdir) || exit 1; done; \
\
mkdir $(distdir)/TEXT; \
for f in $(srcdir)/TEXT/* ; do \
test -f $$f && cp -p $$f $(distdir)/TEXT; \
done
|