From: Steven G. Johnson Date: Sat, 28 Mar 2015 18:38:59 +0000 (-0400) Subject: fix some stray references to mojibake in the bench/ directory X-Git-Tag: archive/raspbian/2.11.3-2+rpi1^2~10^2~1^2~194 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f981f04d0b54d8502237bd659e3bbb6c324e35ed;p=utf8proc.git fix some stray references to mojibake in the bench/ directory --- 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 #include -#include "mojibake.h" +#include "utf8proc.h" #include "util.h" int main(int argc, char **argv)