Commit 07672941 authored by Rusty Russell's avatar Rusty Russell

tal: fix benchmark/Makefile

We need ccan/take here.
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 892f59bd
......@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment