-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·14 lines (14 loc) · 1.05 KB
/
Makefile
File metadata and controls
executable file
·14 lines (14 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
default:
g++ -m64 -mssse3 -Wno-write-strings -O2 -c secp256k1/Int.cpp -o Int.o
g++ -m64 -mssse3 -Wno-write-strings -O2 -c secp256k1/Point.cpp -o Point.o
g++ -m64 -mssse3 -Wno-write-strings -O2 -c secp256k1/SECP256K1.cpp -o SECP256K1.o
g++ -m64 -mssse3 -Wno-write-strings -O2 -c secp256k1/IntMod.cpp -o IntMod.o
g++ -m64 -mssse3 -Wno-write-strings -O2 -c secp256k1/IntGroup.cpp -o IntGroup.o
g++ -O2 -march=native -c util/util.cpp -o util.o
g++ -O2 -march=native -mtune=native -funroll-loops -fomit-frame-pointer -Wno-write-strings -c generate_bloom.cpp
g++ -O2 -march=native -mtune=native -funroll-loops -fomit-frame-pointer -Wno-write-strings -c generate_bloom2.cpp
g++ -O2 -march=native -mtune=native -funroll-loops -fomit-frame-pointer -Wno-write-strings -c point_search.cpp
g++ -o generate_bloom generate_bloom.o util.o SECP256K1.o Int.o IntGroup.o IntMod.o Point.o
g++ -o generate_bloom2 generate_bloom2.o util.o SECP256K1.o Int.o IntGroup.o IntMod.o Point.o
g++ -o point_search point_search.o util.o SECP256K1.o Int.o IntGroup.o IntMod.o Point.o
rm *.o