aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: 203db03b566494f3ea473697c373aca717b3b365 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)