blob: 16bca8a87a78b8bd771bc93ecdb59adee7626bf9 (
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
|
## Process this file with automake to create Makefile.in.
INCLUDES = -I$(top_srcdir) $(GLIB_CFLAGS)
TESTS=runtests.sh
noinst_PROGRAMS = gen-all-unicode dump-boundaries
check_PROGRAMS = testboundaries
gen_all_unicode_SOURCES = gen-all-unicode.c
testboundaries_SOURCES = testboundaries.c
dump_boundaries_SOURCES = dump-boundaries.c
gen_all_unicode_LDADD = $(GLIB_LIBS)
testboundaries_LDADD = ../pango/libpango.la
dump_boundaries_LDADD = ../pango/libpango.la
EXTRA_DIST = \
all-unicode.txt \
boundaries.utf8 \
runtests.sh
all-unicode.txt: gen-all-unicode
./gen-all-unicode > all-unicode.txt
all-local: all-unicode.txt
|