summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@alum.mit.edu>2015-03-28 14:38:59 -0400
committerSteven G. Johnson <stevenj@alum.mit.edu>2015-03-28 14:38:59 -0400
commitf981f04d0b54d8502237bd659e3bbb6c324e35ed (patch)
treed86fa545dccd32043e4dd16a45cb0d0120b2d551
parente1fdad0ca9dc518b429439b6f4eac546a1bdd0de (diff)
downloadlibutf8proc-f981f04d0b54d8502237bd659e3bbb6c324e35ed.tar.gz
libutf8proc-f981f04d0b54d8502237bd659e3bbb6c324e35ed.tar.bz2
fix some stray references to mojibake in the bench/ directory
-rw-r--r--bench/Makefile6
-rw-r--r--bench/bench.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/bench/Makefile b/bench/Makefile
index 8b63f2c..629c686 100644
--- a/bench/Makefile
+++ b/bench/Makefile
@@ -5,10 +5,10 @@ CFLAGS = -O2 -std=c99 -pedantic -Wall
all: bench
-LIBMOJIBAKE = ../libmojibake.a
+LIBUTF8PROC = ../libutf8proc.a
-bench: bench.o util.o $(LIBMOJIBAKE)
- $(CC) $(CFLAGS) $(LDFLAGS) -o $@ bench.o util.o $(LIBMOJIBAKE)
+bench: bench.o util.o $(LIBUTF8PROC)
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ bench.o util.o $(LIBUTF8PROC)
DATAURL = https://raw.githubusercontent.com/duerst/eprun/master/benchmark
DATAFILES = Deutsch_.txt Japanese_.txt Korean_.txt Vietnamese_.txt
diff --git a/bench/bench.c b/bench/bench.c
index fd0e9ac..21685c5 100644
--- a/bench/bench.c
+++ b/bench/bench.c
@@ -2,7 +2,7 @@
#include <stdlib.h>
#include <string.h>
-#include "mojibake.h"
+#include "utf8proc.h"
#include "util.h"
int main(int argc, char **argv)