2396
by Garth N. Wells
Add helper file for local install. |
1 |
#!/bin/sh
|
2 |
||
3 |
# Configure for a local install in $toplevel/local.
|
|
4 |
#
|
|
5 |
# This is useful to be able to run demos from within the
|
|
6 |
# source tree without needing to specify an installation
|
|
7 |
# directory.
|
|
8 |
||
9 |
INSTALLDIR=`pwd`"/local" |
|
10 |
||
2523
by Anders Logg
Minor change in scons.local |
11 |
scons enableDebug=yes $* |
12 |
scons install prefix=$INSTALLDIR |