# compile and run. The commands below assume a gfortran compiler is available
#
gfortran getinputbcs.for -o getinputbcs.exe
gfortran getbctable.for  -o getbctable.exe
./getinputbcs.exe
./getbctable.exe
#
# comment out verbose mode in bcutil.for and save the program so modified as tmp.for
#
sed -e 's/      write(6,1004) ebv,fe,(fil(k),k=1,ndx)/C       write(6,1004) ebv,fe,(fil(k),k=1,ndx)/g' bcutil.for > tmp.for
#
#  compile, link and run 
#
gfortran bcstars.for tmp.for -o bcstars.exe
./bcstars.exe
# should the user wish to have the results written in a file instead of the screen, then replace ./bcstars.exe with 
# ./bcstars.exe > output.file
#
# clean
#
rm bc_std.data
rm tmp.for
rm inputbc_???.data
