blob: f651033b3af7ce353aa188e8fa9d149019aa3c9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
## Process this file with automake to create Makefile.in.
sources = hangul-x.c
if INCLUDE_HANGUL_X
noinst_LTLIBRARIES = libpango-hangul-x.la
moddefine = -DX_MODULE_PREFIX
else
moduledir = $(libdir)/pango/modules
module_LTLIBRARIES = pango-hangul-x.la
moduleflags= -rpath $(libdir)
endif
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/pango/ $(moddefine)
pango_hangul_x_la_LDFLAGS = $(moduleflags) -export-dynamic -avoid-version -module
pango_hangul_x_la_SOURCES = $(sources)
libpango_hangul_x_la_SOURCES = $(sources)
EXTRA_DIST = \
tables-ksc5601.i \
tables-johabfont.i
|