Browse Source

Add the missing microhttpd make install.

Matthieu Garrigues 10 years ago
parent
commit
7b242e41b8
1 changed files with 3 additions and 1 deletions
  1. 3 1
      frameworks/C++/silicon/install.sh

+ 3 - 1
frameworks/C++/silicon/install.sh

@@ -1,17 +1,19 @@
 #!/bin/bash
 #!/bin/bash
 
 
+# Install silicon
 DIR=`pwd`
 DIR=`pwd`
 rm -fr silicon;
 rm -fr silicon;
 git clone https://github.com/matt-42/silicon.git
 git clone https://github.com/matt-42/silicon.git
 cd silicon;
 cd silicon;
 CXX=/usr/bin/g++-4.9 ./install.sh $IROOT
 CXX=/usr/bin/g++-4.9 ./install.sh $IROOT
 
 
+# Install microhttpd
 cd $DIR
 cd $DIR
 wget http://mirror.ibcp.fr/pub/gnu/libmicrohttpd/libmicrohttpd-0.9.39.tar.gz
 wget http://mirror.ibcp.fr/pub/gnu/libmicrohttpd/libmicrohttpd-0.9.39.tar.gz
 tar xvf libmicrohttpd-0.9.39.tar.gz
 tar xvf libmicrohttpd-0.9.39.tar.gz
 cd libmicrohttpd-0.9.39
 cd libmicrohttpd-0.9.39
 ./configure --prefix=$IROOT
 ./configure --prefix=$IROOT
-
+make install
 
 
 cd $TROOT
 cd $TROOT
 mkdir -p build
 mkdir -p build