From 076729416e091a853e4949082b6adf90c77e7548 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Thu, 22 Nov 2012 20:37:01 +1030 Subject: [PATCH] tal: fix benchmark/Makefile We need ccan/take here. Signed-off-by: Rusty Russell --- ccan/tal/benchmark/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ccan/tal/benchmark/Makefile b/ccan/tal/benchmark/Makefile index 45f4f939..abfe8f60 100644 --- a/ccan/tal/benchmark/Makefile +++ b/ccan/tal/benchmark/Makefile @@ -6,8 +6,8 @@ LDLIBS=-lrt all: speed samba-allocs -speed: speed.o tal.o talloc.o time.o hash.o list.o -samba-allocs: samba-allocs.o tal.o talloc.o time.o hash.o list.o +speed: speed.o tal.o talloc.o time.o hash.o list.o take.o +samba-allocs: samba-allocs.o tal.o talloc.o time.o hash.o list.o take.o tal.o: ../tal.c $(CC) $(CFLAGS) -c -o $@ $< @@ -19,6 +19,8 @@ hash.o: ../../hash/hash.c $(CC) $(CFLAGS) -c -o $@ $< list.o: ../../list/list.c $(CC) $(CFLAGS) -c -o $@ $< +take.o: ../../take/take.c + $(CC) $(CFLAGS) -c -o $@ $< clean: rm -f speed samba-allocs *.o -- 2.39.2