blob: 1f6be5540b95566bddf25bc771e8aaec9e4c195f (
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
|
## Process this file with automake to create Makefile.in.
sources = basic.c
if INCLUDE_BASIC
noinst_LTLIBRARIES = libpango-basic.la
moddefine = -DMODULE_PREFIX
else
moduledir = $(libdir)/pango/modules
module_LTLIBRARIES = pango-basic.la
endif
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/pango/ $(moddefine)
pango_basic_la_LDFLAGS = -rpath $(libdir) -export-dynamic -avoid-version -module
pango_basic_la_LIBADD =
pango_basic_la_SOURCES = $(sources)
libpango_basic_la_SOURCES = $(sources)
EXTRA_DIST = \
tables-big.i \
tables-small.i \
basic-win32.c \
basic-ft2.c \
makefile.mingw \
makefile.mingw.in
makefile.mingw: $(top_builddir)/config.status $(top_srcdir)/modules/basic/makefile.mingw.in
cd $(top_builddir) && CONFIG_FILES=modules/basic/$@ CONFIG_HEADERS= $(SHELL) ./config.status
|