summaryrefslogtreecommitdiff
path: root/ccan/tal/benchmark/Makefile
diff options
context:
space:
mode:
authorWilliam Casarin <jb55@jb55.com>2018-07-09 22:28:25 -0700
committerWilliam Casarin <jb55@jb55.com>2018-07-09 22:31:48 -0700
commit9593fc545950782ed75f12f53238b07885559b2b (patch)
tree9c7c2f7cbb427c54e9184cb61eedce737a6cbc6f /ccan/tal/benchmark/Makefile
parentbd8c223756d2f912526ecef53bae0cc8e0c63442 (diff)
remove ccan for now
Diffstat (limited to 'ccan/tal/benchmark/Makefile')
-rw-r--r--ccan/tal/benchmark/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/ccan/tal/benchmark/Makefile b/ccan/tal/benchmark/Makefile
deleted file mode 100644
index f1e8502..0000000
--- a/ccan/tal/benchmark/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-CFLAGS=-O3 -Wall -flto -I../../..
-#CFLAGS=-O3 -Wall -I../../..
-#CFLAGS=-g -Wall -I../../..
-LDFLAGS=-O3 -flto
-LDLIBS=-lrt
-
-all: speed samba-allocs
-
-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
- $(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