3 #---------------------------------------------------
4 # This stuff introduced by SDB to enable --prefix
8 if test "x$1" != "x"; then
9 # echo Found input parameter -- $1
10 # Now see if the parameter is --prefix=
11 if test "x${1#--prefix=}" != "x$1"; then
12 # echo "Found --prefix in input args. Setting prefix directory."
15 # echo "Found unrecognized parameter in input args."
16 # Just use the default prefix dir.
21 # echo "No input parameter found."
22 # Just use the default prefix dir
26 args
="--prefix=$prefix"
28 echo "Configuring gnucap using $args"
29 #---------------------------------------------------
31 (cd include
; .
/configure
$args)
33 (cd lib
; .
/configure
$args)
35 (cd modelgen
; .
/configure
$args)
37 (cd main
; .
/configure
$args)
39 (cd apps
; .
/configure
$args)