blob: 6d9ebab07a6bfa26354c32a3284a2267d2a884a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
## Process this file with automake to create Makefile.in.
sources = tamil.c taconv.c taconv.h tadefs.h
if INCLUDE_TAMIL
noinst_LTLIBRARIES = libpango-tamil.la
moddefine = -DMODULE_PREFIX=_pango_tamil_
else
moduledir = $(libdir)/pango/modules
module_LTLIBRARIES = pango-tamil.la
endif
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/pango/ $(moddefine)
pango_tamil_la_LDFLAGS = -rpath $(libdir) -export-dynamic -avoid-version -module
pango_tamil_la_SOURCES = $(sources)
libpango_tamil_la_SOURCES = $(sources)
|