diff options
Diffstat (limited to 'lib/ccan/htable/tools/Makefile')
-rw-r--r-- | lib/ccan/htable/tools/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/ccan/htable/tools/Makefile b/lib/ccan/htable/tools/Makefile index 289d92b335..a21c51cb55 100644 --- a/lib/ccan/htable/tools/Makefile +++ b/lib/ccan/htable/tools/Makefile @@ -1,7 +1,7 @@ CFLAGS=-Wall -Werror -O3 -I../../.. #CFLAGS=-Wall -Werror -g -I../../.. -all: speed stringspeed +all: speed stringspeed hsearchspeed speed: speed.o hash.o @@ -14,5 +14,7 @@ stringspeed: stringspeed.o hash.o ../../talloc.o ../../str_talloc.o ../../grab_f stringspeed.o: speed.c ../htable.h ../htable.c +hsearchspeed: hsearchspeed.o ../../talloc.o ../../str_talloc.o ../../grab_file.o ../../str.o ../../time.o ../../noerr.o + clean: - rm -f stringspeed speed + rm -f stringspeed speed hsearchspeed *.o |