summaryrefslogtreecommitdiff
path: root/pango/Makefile.am
blob: e134358bed3bc37bf8bcb4a799bd094709079fbc (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
## Process this file with automake to create Makefile.in.

lib_LTLIBRARIES = libpango.la
bin_PROGRAMS = pango-querymodules

libpango_la_SOURCES = \
	break.c \
	fonts.c \
	glyphstring.c \
	pangox.c \
	itemize.c \
	mapping.c \
	modules.c \
	modules.h \
	reorder-items.c \
	shape.c \
	utils.c \
	utils.h

# 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)

include_HEADERS = pango.h pangox.h

pango_querymodules_SOURCES = \
	querymodules.c
pango_querymodules_LDADD = libpango.la $(GTK_LIBS) -lfribidi $(UNICODE_LIBS)