PyBitmessage/src/bitmsghash/Makefile

15 lines
251 B
Makefile
Raw Normal View History

2015-11-07 18:02:53 +00:00
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