blob: 6bac8b1a98cbd13beefd29c7adfa75d93aa24328 (
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.
INCLUDES = -I$(top_srcdir) $(GLIB_CFLAGS)
TESTS=runtests.sh
noinst_PROGRAMS = dump-boundaries
check_PROGRAMS = testboundaries
testboundaries_SOURCES = testboundaries.c
dump_boundaries_SOURCES = dump-boundaries.c
testboundaries_LDADD = ../pango/libpango.la
dump_boundaries_LDADD = ../pango/libpango.la
EXTRA_DIST = \
all-unicode.txt \
boundaries.utf8 \
runtests.sh
|