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

INCLUDES=-DSYSCONFDIR=\"$(sysconfdir)\" -DLOCALSTATEDIR=\"$(localstatedir)\"

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 	   \
	pango-attributes.c \
	pango-context.c    \
	pango-coverage.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)

include_HEADERS = 	   \
	pango.h		   \
	pango-attributes.h \
	pango-context.h	   \
	pango-coverage.h   \
	pango-engine.h	   \
	pango-font.h       \
	pango-glyph.h	   \
	pango-layout.h	   \
	pango-types.h	   \
	pangox.h	

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