Super fast C++ payment_history (not working with mempool yet)
[electrum-server.git] / backends / libbitcoin / Makefile
1 CC = g++ -fPIC -Wall -ansi `pkg-config --cflags libbitcoin` -I/usr/include/python2.7 
2
3 default:
4         $(CC) -c history.cpp -o history.o
5         $(CC) -shared -Wl,-soname,_history.so history.o -lpython2.7 -lboost_python `pkg-config --libs libbitcoin` -lboost_thread -o history1/_history.so
6