summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTony Kelman <tony@kelman.net>2015-05-30 07:28:19 -0700
committerTony Kelman <tony@kelman.net>2015-05-30 07:28:19 -0700
commitf7219d516efe7496737d041f22b0ba567174fb16 (patch)
tree5a094c0e9d73ab73c7a66cbe5ed5f4c90ecb8edf /Makefile
parent1f21f3c09608c4e3520d96c0414659c75142f5d1 (diff)
downloadlibutf8proc-f7219d516efe7496737d041f22b0ba567174fb16.tar.gz
libutf8proc-f7219d516efe7496737d041f22b0ba567174fb16.tar.bz2
Fix make check1.3-dev1
#35 and #40 added new tests that #38 did not take into account this is one case where it would be good if Travis re-tested the PR after new commits get pushed to master
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index a8b0094..223f37e 100644
--- a/Makefile
+++ b/Makefile
@@ -96,25 +96,25 @@ data/GraphemeBreakTest.txt:
$(MAKE) -C data GraphemeBreakTest.txt
test/normtest: test/normtest.c utf8proc.o utf8proc.h test/tests.h
- $(CC) test/normtest.c utf8proc.o -o $@
+ $(CC) $(CFLAGS) test/normtest.c utf8proc.o -o $@
test/graphemetest: test/graphemetest.c utf8proc.o utf8proc.h test/tests.h
- $(CC) test/graphemetest.c utf8proc.o -o $@
+ $(CC) $(CFLAGS) test/graphemetest.c utf8proc.o -o $@
test/printproperty: test/printproperty.c utf8proc.o utf8proc.h test/tests.h
- $(CC) test/printproperty.c utf8proc.o -o $@
+ $(CC) $(CFLAGS) test/printproperty.c utf8proc.o -o $@
test/charwidth: test/charwidth.c utf8proc.o utf8proc.h test/tests.h
- $(CC) test/charwidth.c utf8proc.o -o $@
+ $(CC) $(CFLAGS) test/charwidth.c utf8proc.o -o $@
test/valid: test/valid.c utf8proc.o utf8proc.h test/tests.h
- $(cc) test/valid.c utf8proc.o -o $@
+ $(CC) $(CFLAGS) test/valid.c utf8proc.o -o $@
test/iterate: test/iterate.c utf8proc.o utf8proc.h test/tests.h
- $(cc) test/iterate.c utf8proc.o -o $@
+ $(CC) $(CFLAGS) test/iterate.c utf8proc.o -o $@
test/case: test/case.c utf8proc.o utf8proc.h test/tests.h
- $(cc) test/case.c utf8proc.o -o $@
+ $(CC) $(CFLAGS) test/case.c utf8proc.o -o $@
check: test/normtest data/NormalizationTest.txt test/graphemetest data/GraphemeBreakTest.txt test/printproperty test/case test/charwidth test/valid test/iterate bench/bench.c bench/util.c bench/util.h utf8proc.o
$(MAKE) -C bench