diff options
author | JP Aumasson <jeanphilippe.aumasson@gmail.com> | 2016-12-16 09:04:05 +0100 |
---|---|---|
committer | JP Aumasson <jeanphilippe.aumasson@gmail.com> | 2016-12-16 09:04:05 +0100 |
commit | 8388cbe24faceb3ed5b2f55a7c168ab48449f0c8 (patch) | |
tree | 7e6d01743673579f68182af6a6a0f1df3e7f6758 /makefile | |
parent | comments on 128b security (diff) | |
download | siphash-8388cbe24faceb3ed5b2f55a7c168ab48449f0c8.tar.gz siphash-8388cbe24faceb3ed5b2f55a7c168ab48449f0c8.tar.xz |
readme
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 21 |
1 files changed, 6 insertions, 15 deletions
@@ -1,27 +1,18 @@ CC=gcc -CFLAGS=-Wall -SRC=siphash24.c main.c -BIN=siphash24_test siphash24_debug -BIN_DOUBLE=siphash24_test_double siphash24_debug_double +CFLAGS=-Wall +SRC=siphash.c halfsiphash.c test.c +BIN=test debug all: $(BIN) -siphash24_test: $(SRC) +test: $(SRC) $(CC) $(CFLAGS) $^ -o $@ -siphash24_debug: $(SRC) +debug: $(SRC) $(CC) $(CFLAGS) $^ -o $@ -DDEBUG -double: $(BIN_DOUBLE) - -siphash24_test_double: $(SRC) - $(CC) $(CFLAGS) $^ -o $@ -DDOUBLE - -siphash24_debug_double: $(SRC) - $(CC) $(CFLAGS) $^ -o $@ -DDOUBLE -DDEBUG - clean: - rm -f *.o $(BIN) $(BIN_DOUBLE) + rm -f *.o $(BIN) dist: clean cd ..; \ |