A Linux netfilter module to aid in (d)dos protection
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
294 B

CC = gcc
CFLAGS = -g
RM = rm -f
default: all
all: test_siphash
%_test.o: %.c
$(CC) -c $(CFLAGS) $< -o $@
test_siphash: test_siphash_test.o siphash24_ref_test.o ../src/siphash24_test.o
$(CC) $(CFLAGS) -o $@ $^
clean veryclean:
$(RM) test_siphash *.o ../src/siphash24_test.o