siphash/makefile

16 lines
276 B
Makefile
Raw Normal View History

2014-03-23 10:53:31 +00:00
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)