diff options
Diffstat (limited to 'lib/ccan/strset/tools/Makefile')
-rw-r--r-- | lib/ccan/strset/tools/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/ccan/strset/tools/Makefile b/lib/ccan/strset/tools/Makefile new file mode 100644 index 0000000000..77b1f7d709 --- /dev/null +++ b/lib/ccan/strset/tools/Makefile @@ -0,0 +1,11 @@ +CFLAGS=-Wall -Werror -O3 -I../../.. +#CFLAGS=-Wall -Werror -g -I../../.. + +all: cbspeed speed + +cbspeed: cbspeed.o ../../talloc.o ../../str_talloc.o ../../grab_file.o ../../str.o ../../time.o ../../noerr.o + +speed: speed.o ../../talloc.o ../../str_talloc.o ../../grab_file.o ../../str.o ../../time.o ../../noerr.o + +clean: + rm -f cbspeed speed speed.o cbspeed.o |