C PoW library makefile

For easy compiling with GNU make (e.g. Unix-like systems).
Run as "make bitmsghash.so"
This commit is contained in:
Peter Šurda 2015-11-05 22:27:34 +01:00
parent 2869822134
commit 84c9b1dd31
1 changed files with 15 additions and 0 deletions

15
src/Makefile Normal file
View File

@ -0,0 +1,15 @@
all:
@echo "This compiles and tests the C PoW library, it's not necessary to run PyBitmessage"
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