#!/bin/bash # g++ -c -g -I/$HOME/include sandia_sgmg_weight_prb.cpp >& compiler.txt if [ $? -ne 0 ]; then echo "Errors compiling sandia_sgmg_weight_prb.cpp" exit fi rm compiler.txt # g++ sandia_sgmg_weight_prb.o /$HOME/libcpp/$ARCH/sandia_sgmg.o /$HOME/libcpp/$ARCH/sandia_rules2.o /$HOME/libcpp/$ARCH/sandia_rules.o -lm if [ $? -ne 0 ]; then echo "Errors linking and loading sandia_sgmg_weight_prb.o." exit fi # rm sandia_sgmg_weight_prb.o # mv a.out sandia_sgmg_weight_prb ./sandia_sgmg_weight_prb > sandia_sgmg_weight_prb_output.txt if [ $? -ne 0 ]; then echo "Errors running sandia_sgmg_weight_prb." exit fi rm sandia_sgmg_weight_prb # echo "Program output written to sandia_sgmg_weight_prb_output.txt"