How do I make from the GIT source on linux? No autogen or configure. Working on making a pool.
Make file errors out with Makefile.66: *** multiple target patterns. Stop.
Its like the old Bitcoin in the sense of compiling
You will want to install the required deps first:
sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils libboost-all-dev libminiupnpc-dev libzmq3-dev libqrencode-dev
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev
And these if you want to compile the QT on Linux:
sudo apt-get install libqt4-dev libprotobuf-dev protobuf-compiler
How to build denariusd on Linux:git clone https://github.com/carsenk/denarius.git
cd denarius
cd src
chmod 777 -R leveldb
cd leveldb
make clean
make
cd ..
make -f makefile.unix
(If building the QT wallet on Linux you will need to comment out the first few lines in the .pro file to build)