blob: ee0961bc39a4e9868f1000fd1b027e7568de3560 (
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
|
## Process this file with automake to create Makefile.in.
INCLUDES=-DSYSCONFDIR=\"$(sysconfdir)\" -DLIBDIR=\"$(libdir)\"
-I$(top_srcdir)
lib_LTLIBRARIES = libpango.la libpangox.la
bin_PROGRAMS = pango-querymodules
libpango_la_SOURCES = \
break.c \
fonts.c \
glyphstring.c \
mapping.c \
modules.c \
modules.h \
module-defs.c \
pango-attributes.c \
pango-context.c \
pango-coverage.c \
pango-fontmap.c \
pango-item.c \
pango-layout.c \
pango-utils.c \
reorder-items.c \
shape.c
libpangox_la_SOURCES = \
pangox.c \
pangox-private.h \
pangox-fontcache.c \
pangox-fontmap.c
# We use the -release flag for now until the API settles
# down at which point we'll either use the GTK+ versioning
# scheme or the standard libtool scheme.
#
libpango_la_LDFLAGS = -release $(VERSION) $(GLIB_LIBS)
libpangox_la_LDFLAGS = -release $(VERSION)
libpangox_la_LIBADD = $(INCLUDED_MODULES)
pangoincludedir=$(includedir)/pango
pangoinclude_HEADERS = \
pango.h \
pango-attributes.h \
pango-context.h \
pango-coverage.h \
pango-engine.h \
pango-font.h \
pango-fontmap.h \
pango-glyph.h \
pango-item.h \
pango-layout.h \
pango-modules.h \
pango-types.h \
pango-utils.h \
pangox.h
#
# As a temporary hack, we pull in libpangox here so that we can link
#
pango_querymodules_SOURCES = \
querymodules.c
pango_querymodules_LDADD = libpangox.la libpango.la $(GLIB_LIBS) $(FRIBIDI_LIBS) $(UNICODE_LIBS) $(X_LIBS)
|