#!/usr/local/bin/tcsh #------------------------------------------------------------------- # This script builds the POOMA library, builds an example code, and # runs it. #------------------------------------------------------------------- #configure and build pooma: echo 'building pooma' configure --arch SGI64KCC --oneper --opt setenv POOMASUITE SGI64KCC module load KCC_latest make echo 'building a pooma example' cd examples/Doof2d make echo 'running a pooma example' SGI64KCC/Doof2d echo 'finished'