*** empty log message ***
[m17n/m17n-test.git] / Makefile.am
1 noinst_PROGRAMS = \
2         linebreak replace mimdemo mimdaemon fifotest1 fifotest2 \
3         imtest findfont gdkdraw
4
5 mimdemo_LDADD = -lgd
6 mimdaemon_LDADD = -lgd
7
8 gdkdraw_LDADD = -lgd
9 gdkdraw_LDFLAGS = `pkg-config --libs gdk-pixbuf-2.0` `pkg-config --libs gtk+-2.0`
10 AM_CPPFLAGS = `pkg-config --cflags gdk-pixbuf-2.0` `pkg-config --cflags gtk+-2.0`
11
12 verify: linebreak
13         @echo "checking line breaking..."
14         @for arg in "" --sp-cm --korean-sp --ai-as-id; do \
15           if test "x$$arg" = "x"; then \
16             echo "  cheking the default algorithm..."; \
17           else \
18             echo "  cheking $$arg..."; \
19           fi; \
20           ./linebreak $$arg < LBRK.src > temp; \
21           diff -au LBRK$$arg.dst temp; \
22         done