source: main/trunk/greenstone2/runtime-src/packages/security/CASCADE-MAKE/CRYPTOPP.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: 470 bytes
Line 
1#!/bin/bash
2
3cd $securitydir/$compiledir
4prefix=$installdir
5#export PREFIX=$installdir
6
7# If doing a make clean or distclean
8if [ "x$1" != "x" ]; then
9 make -f GNUmakefile $*
10 exit 0
11fi
12
13# else, make and make install
14
15if [ ! -e libcryptopp.a ]; then
16 #make -f GNUmakefile static
17 #make -f GNUmakefile install static
18
19 PREFIX=$prefix make -f GNUmakefile # static
20 PREFIX=$prefix make -f GNUmakefile install static
21fi
22
23#export PREFIX=
24cd $securitydir
Note: See TracBrowser for help on using the repository browser.