Update build manuals
[novacoin.git] / doc / readme-qt.rst
index 955bcfa..b2d72d8 100644 (file)
@@ -16,7 +16,7 @@ for Debian and Ubuntu  <= 11.10 :
 
 ::
 
-    apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev \
+    sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev \
         libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
         libssl-dev libdb4.8++-dev
 
@@ -24,21 +24,43 @@ for Ubuntu >= 12.04 (please read the 'Berkely DB version warning' below):
 
 ::
 
-    apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev \
+    sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev \
         libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev \
         libssl-dev libdb++-dev
+               
+install Git:
 
-then execute the following:
+::
+
+    sudo apt-get install git
+
+clone the repository :
 
 ::
 
-    qmake
+    git clone https://github.com/novacoin-project/novacoin
+   
+
+Execute the following:
+
+::
+
+    cd novacoin
+    qmake USE_O3=1 USE_ASM=1 RELEASE=1
     make
 
 Alternatively, install Qt Creator and open the `novacoin-qt.pro` file.
 
 An executable named `novacoin-qt` will be built.
 
+To build novacoind execute the following:
+
+::
+
+    cd src
+    make -f makefile.unix USE_O3=1 USE_ASM=1 STATIC=1
+    strip novacoind
+
 
 Windows
 --------