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