From: Rusty Russell Date: Thu, 22 Nov 2012 10:07:01 +0000 (+1030) Subject: tal: fix benchmark/Makefile X-Git-Url: https://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=076729416e091a853e4949082b6adf90c77e7548;hp=892f59bdc1830443f87ad3aaeddaab2eeefb5937 tal: fix benchmark/Makefile We need ccan/take here. Signed-off-by: Rusty Russell --- 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