fix some stray references to mojibake in the bench/ directory

This commit is contained in:
Steven G. Johnson 2015-03-28 14:38:59 -04:00
parent e1fdad0ca9
commit f981f04d0b
2 changed files with 4 additions and 4 deletions

View File

@ -5,10 +5,10 @@ CFLAGS = -O2 -std=c99 -pedantic -Wall
all: bench all: bench
LIBMOJIBAKE = ../libmojibake.a LIBUTF8PROC = ../libutf8proc.a
bench: bench.o util.o $(LIBMOJIBAKE) bench: bench.o util.o $(LIBUTF8PROC)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ bench.o util.o $(LIBMOJIBAKE) $(CC) $(CFLAGS) $(LDFLAGS) -o $@ bench.o util.o $(LIBUTF8PROC)
DATAURL = https://raw.githubusercontent.com/duerst/eprun/master/benchmark DATAURL = https://raw.githubusercontent.com/duerst/eprun/master/benchmark
DATAFILES = Deutsch_.txt Japanese_.txt Korean_.txt Vietnamese_.txt DATAFILES = Deutsch_.txt Japanese_.txt Korean_.txt Vietnamese_.txt

View File

@ -2,7 +2,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include "mojibake.h" #include "utf8proc.h"
#include "util.h" #include "util.h"
int main(int argc, char **argv) int main(int argc, char **argv)