From 91a77d75885527263bb2cd79173bbf8494994c09 Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Thu, 7 Aug 2014 16:52:16 -0400 Subject: added normalization and encoding test for #13 --- Makefile | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index dfb6392..4ff75ba 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,6 @@ CompositionExclusions.txt: CaseFolding.txt: $(CURL) -O http://www.unicode.org/Public/UNIDATA/CaseFolding.txt - utf8proc.o: mojibake.h utf8proc.c utf8proc_data.c $(cc) -c -o utf8proc.o utf8proc.c @@ -59,3 +58,15 @@ libmojibake.so: utf8proc.o libmojibake.dylib: utf8proc.o $(cc) -dynamiclib -o $@ $^ -install_name $(libdir)/$@ + + +# Test programs + +NormalizationTest.txt: + $(CURL) -O http://www.unicode.org/Public/UNIDATA/NormalizationTest.txt + +normtest: normtest.c utf8proc.o mojibake.h + $(cc) normtest.c utf8proc.o -o normtest + +check: normtest NormalizationTest.txt + ./normtest -- cgit v1.2.3