summaryrefslogtreecommitdiff
path: root/ccan/htable/tools/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/htable/tools/Makefile
parentbd8c223756d2f912526ecef53bae0cc8e0c63442 (diff)
remove ccan for now
Diffstat (limited to 'ccan/htable/tools/Makefile')
-rw-r--r--ccan/htable/tools/Makefile40
1 files changed, 0 insertions, 40 deletions
diff --git a/ccan/htable/tools/Makefile b/ccan/htable/tools/Makefile
deleted file mode 100644
index a2cad59..0000000
--- a/ccan/htable/tools/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
-CCANDIR=../../..
-CFLAGS=-Wall -Werror -O3 -I$(CCANDIR)
-#CFLAGS=-Wall -Werror -g -I$(CCANDIR)
-
-CCAN_OBJS:=ccan-tal.o ccan-tal-str.o ccan-tal-grab_file.o ccan-take.o ccan-time.o ccan-str.o ccan-noerr.o ccan-list.o
-
-all: speed stringspeed hsearchspeed
-
-speed: speed.o hash.o $(CCAN_OBJS)
-
-speed.o: speed.c ../htable.h ../htable.c
-
-hash.o: ../../hash/hash.c
- $(CC) $(CFLAGS) -c -o $@ $<
-
-stringspeed: stringspeed.o hash.o $(CCAN_OBJS)
-
-stringspeed.o: speed.c ../htable.h ../htable.c
-
-hsearchspeed: hsearchspeed.o $(CCAN_OBJS)
-
-clean:
- rm -f stringspeed speed hsearchspeed *.o
-
-ccan-tal.o: $(CCANDIR)/ccan/tal/tal.c
- $(CC) $(CFLAGS) -c -o $@ $<
-ccan-tal-str.o: $(CCANDIR)/ccan/tal/str/str.c
- $(CC) $(CFLAGS) -c -o $@ $<
-ccan-take.o: $(CCANDIR)/ccan/take/take.c
- $(CC) $(CFLAGS) -c -o $@ $<
-ccan-tal-grab_file.o: $(CCANDIR)/ccan/tal/grab_file/grab_file.c
- $(CC) $(CFLAGS) -c -o $@ $<
-ccan-time.o: $(CCANDIR)/ccan/time/time.c
- $(CC) $(CFLAGS) -c -o $@ $<
-ccan-list.o: $(CCANDIR)/ccan/list/list.c
- $(CC) $(CFLAGS) -c -o $@ $<
-ccan-str.o: $(CCANDIR)/ccan/str/str.c
- $(CC) $(CFLAGS) -c -o $@ $<
-ccan-noerr.o: $(CCANDIR)/ccan/noerr/noerr.c
- $(CC) $(CFLAGS) -c -o $@ $<