hypre/seq_linear_solvers/amg/build
1996-08-12 19:46:08 +00:00

29 lines
863 B
Bash
Executable File

#!/bin/sh
#===========================================================================
# This script builds all of the code in the AMG directory structure
#===========================================================================
. $AMG_SRC/config/build_generic
#=============================================================================
# Build
#=============================================================================
DIRS="tools amg"
for i in $DIRS
do
echo "Building $i"
(cd $AMG_SRC/$i; ./build)
done
#=============================================================================
# Install
#=============================================================================
#=============================================================================
# Clean
#=============================================================================