summaryrefslogtreecommitdiff
path: root/bench/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'bench/Makefile')
-rw-r--r--bench/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/bench/Makefile b/bench/Makefile
index 6fa7085..8b63f2c 100644
--- a/bench/Makefile
+++ b/bench/Makefile
@@ -26,8 +26,14 @@ icu: icu.o util.o
icu.out: $(DATAFILES) icu
./icu $(DATAFILES) > $@
+unistring: unistring.o util.o
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ unistring.o util.o -lunistring
+
+unistring.out: $(DATAFILES) unistring
+ ./unistring $(DATAFILES) > $@
+
.c.o:
$(CC) $(CPPFLAGS) -I.. $(CFLAGS) -c -o $@ $<
clean:
- rm -rf *.o *.txt bench *.out icu
+ rm -rf *.o *.txt bench *.out icu unistring