Commit 769352e9 authored by Rusty Russell's avatar Rusty Russell

tal: fix compilation of speed benchmark.

Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 0248fa2c
......@@ -6,11 +6,13 @@ LDLIBS=-lrt
all: speed samba-allocs
speed: speed.o tal.o talloc.o time.o list.o take.o
speed: speed.o tal.o talloc.o time.o list.o take.o str.o
samba-allocs: samba-allocs.o tal.o talloc.o time.o list.o take.o
tal.o: ../tal.c
$(CC) $(CFLAGS) -c -o $@ $<
str.o: ../str/str.c
$(CC) $(CFLAGS) -c -o $@ $<
talloc.o: ../../talloc/talloc.c
$(CC) $(CFLAGS) -c -o $@ $<
time.o: ../../time/time.c
......
......@@ -24,6 +24,7 @@
*/
#include <ccan/talloc/talloc.h>
#include <ccan/tal/tal.h>
#include <ccan/tal/str/str.h>
#include <ccan/time/time.h>
#include <ccan/err/err.h>
#include <string.h>
......
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