aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJP Aumasson <jeanphilippe.aumasson@gmail.com>2015-10-20 22:53:53 +0200
committerJP Aumasson <jeanphilippe.aumasson@gmail.com>2015-10-20 22:53:53 +0200
commitadcbf09b1684a718f594faa650ffc56bacdb0777 (patch)
treef19afb335816d983ab56c06a927558e2487450b8 /makefile
parentformatting (diff)
downloadsiphash-adcbf09b1684a718f594faa650ffc56bacdb0777.tar.gz
siphash-adcbf09b1684a718f594faa650ffc56bacdb0777.tar.xz
reformat
Diffstat (limited to 'makefile')
-rw-r--r--makefile29
1 files changed, 0 insertions, 29 deletions
diff --git a/makefile b/makefile
deleted file mode 100644
index ef0b699..0000000
--- a/makefile
+++ /dev/null
@@ -1,29 +0,0 @@
-CC=gcc
-CFLAGS=-Wall
-SRC=siphash24.c main.c
-BIN=siphash24_test siphash24_debug
-BIN_DOUBLE=siphash24_test_double siphash24_debug_double
-
-all: $(BIN)
-
-siphash24_test: $(SRC)
- $(CC) $(CFLAGS) $^ -o $@
-
-siphash24_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)
-
-dist: clean
- cd ..; \
- tar zcf SipHash-`date +%Y%m%d%H%M`.tgz SipHash/*
-