From e1e923ecef5da252b3ecc2eec9d7f87d4c7901b8 Mon Sep 17 00:00:00 2001 From: JP Aumasson Date: Sun, 23 Mar 2014 11:53:31 +0100 Subject: code and readme --- makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..203db03 --- /dev/null +++ b/makefile @@ -0,0 +1,15 @@ +CC=gcc +CFLAGS=-Wall +BIN=siphash24_test siphash24_test_debug + +all: $(BIN) + +siphash24_test: siphash24.c main.c + gcc $(CFLAGS) $^ -o $@ + +siphash24_test_debug: siphash24.c main.c + gcc $(CFLAGS) $^ -o $@ -DDEBUG + +clean: + rm -f *.o $(BIN) + -- cgit v1.2.3