This repository has been archived on 2024-12-03. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-03/src/bitmsghash/Makefile

16 lines
328 B
Makefile
Raw Normal View History

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