13 lines
271 B
Makefile
13 lines
271 B
Makefile
MONERO_GUI_DIR_FULL_PATH=$(PWD)/monero-gui
|
|
|
|
BRANCH=master
|
|
|
|
all: bitcoin bitcoind
|
|
|
|
bitcoin:
|
|
git clone --branch $(BRANCH) --recursive https://github.com/bitcoin/bitcoin; true
|
|
|
|
bitcoind: bitcoin
|
|
cd bitcoin && \
|
|
./autogen.sh && ./configure --with-incompatible-bdb && make
|