*** empty log message ***
[m17n/m17n-test.git] / Makefile.am
index b5d620f..72f36de 100644 (file)
@@ -1,2 +1,13 @@
-noinst_PROGRAMS = replace
+noinst_PROGRAMS = linebreak replace
 
+verify: linebreak
+       @echo "checking line breaking..."
+       @for arg in "" --sp-cm --korean-sp --ai-as-id; do \
+         if test "x$$arg" = "x"; then \
+           echo "  cheking the default algorithm..."; \
+         else \
+           echo "  cheking $$arg..."; \
+         fi; \
+         ./linebreak $$arg < LBRK.src > temp; \
+         diff -au LBRK$$arg.dst temp; \
+       done