blob: e9f663e6f475139f65d57fe4723a88349a36df64 (
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
|
## Process this file with automake to create Makefile.in.
INCLUDES=-DSYSCONFDIR=\"$(sysconfdir)\" -DLOCALSTATEDIR=\"$(localstatedir)\" -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-item.c \
pango-layout.c \
reorder-items.c \
shape.c \
utils.c \
utils.h
libpangox_la_SOURCES = \
pangox.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)
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-glyph.h \
pango-item.h \
pango-layout.h \
pango-types.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)
|