From f1eb78a75133e20653a4152afa8f56d57e150c16 Mon Sep 17 00:00:00 2001 From: "John D. Mitchell" Date: Fri, 31 Aug 2012 15:34:21 -0700 Subject: [PATCH] Update kmin_test to use kmath merger. --- test/Makefile | 4 ++-- test/kmin_test.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Makefile b/test/Makefile index e8af9a6..cc52bb9 100644 --- a/test/Makefile +++ b/test/Makefile @@ -43,8 +43,8 @@ ksort_test-stl:ksort_test.cc ../ksort.h kvec_test:kvec_test.cc ../kvec.h $(CXX) $(CXXFLAGS) -o $@ kvec_test.cc -kmin_test:kmin_test.c ../kmin.h ../kmin.c - $(CC) $(CFLAGS) -o $@ kmin_test.c ../kmin.c +kmin_test:kmin_test.c ../kmath.h ../kmath.c + $(CC) $(CFLAGS) -o $@ kmin_test.c ../kmath.c kstring_bench:kstring_bench.c ../kstring.h ../kstring.c $(CC) $(CFLAGS) -o $@ kstring_bench.c ../kstring.c diff --git a/test/kmin_test.c b/test/kmin_test.c index cb1a4e8..33ccd1c 100644 --- a/test/kmin_test.c +++ b/test/kmin_test.c @@ -1,6 +1,6 @@ #include #include -#include "kmin.h" +#include "kmath.h" static int n_evals; -- 2.47.3