15 lines
251 B
Makefile
15 lines
251 B
Makefile
all: bitmsghash.so
|
|
|
|
powtest:
|
|
./testpow.py
|
|
|
|
bitmsghash.so: bitmsghash.o
|
|
g++ bitmsghash.o -shared -fPIC -lpthread -lcrypto -o bitmsghash.so
|
|
|
|
bitmsghash.o:
|
|
g++ -Wall -O3 -march=native -fPIC -c bitmsghash.cpp
|
|
|
|
clean:
|
|
rm -f bitmsghash.o bitmsghash.so
|
|
|