]> WPIA git - cassiopeia.git/blob - lib/collissiondetect/Makefile
add: Import libdetectcoll v0.2 source code by Marc Steven
[cassiopeia.git] / lib / collissiondetect / Makefile
1 detectcollv: *.c *.h
2         gcc -O3 -march=native -DVERBOSE_COLLDETECT main.c libdetectcoll.c -o detectcollv
3
4 detectcoll: *.c *.h
5         gcc -O3 -march=native main.c libdetectcoll.c -o detectcoll
6
7 detectcoll_reducedsha: *.c *.h
8         gcc -O3 -march=native -DVERBOSE_COLLDETECT -DDETECT_REDUCED_SHA_COLLISION main.c libdetectcoll.c -o detectcoll_reducedsha
9
10 test: detectcollv
11         ./detectcollv tests/*
12         
13 all: detectcollv detectcoll detectcoll_reducedsha