source: main/trunk/greenstone2/runtime-src/packages/security/CASCADE-MAKE/ZLIB.sh@ 28866

Last change on this file since 28866 was 28866, checked in by ak19, 10 years ago

Replacing owasp-esapi-for-c package and dependencies with the owasp-esapi-for-c++ package and dependencies. Part 2.

  • Property svn:executable set to *
File size: 613 bytes
Line 
1#!/bin/bash
2
3cd $securitydir/$compiledir
4prefix=$installdir
5#echo `pwd`
6
7# If doing a make clean or distclean
8if [ "x$1" != "x" ]; then
9 make $1
10 exit 0
11fi
12
13# else, configure, make, make install
14
15# configure, but only if we haven't already
16if [ ! -e config.h ] ; then
17 ./configure --prefix=$prefix
18fi
19
20if [ $? != 0 ] ; then
21 echo "Error encountered when configuring $d"
22 exit 1
23fi
24
25# make
26make
27if [ $? != 0 ] ; then
28 echo "Error encountered making $d"
29 exit 1
30fi
31
32# make install
33make install
34if [ $? != 0 ] ; then
35 echo "Error encountered when installing $d"
36 exit 1
37fi
38
39cd $securitydir
Note: See TracBrowser for help on using the repository browser.