summaryrefslogtreecommitdiffstats
path: root/build.sh
blob: 317b1d45a33b7889419d851b3e95cb003ea8fb64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
set -e
sh autogen.sh
AXIS2C_HOME=${AXIS2C_HOME:=`pwd`/deploy}

export AXIS2C_HOME

echo "AXIS2C_HOME = ${AXIS2C_HOME}"

sh configure --prefix=${AXIS2C_HOME} --enable-tests=yes --with-apache2=/usr/local/apache2/include 
make -j 10 
make install

cd samples
sh build.sh

cd ..