#  Test the function Ln_Gamma_Function() and xLn_Gamma_Function() in the file
#  ln_gamma_function.c.                 
#
#  Dependent on: 
#     gamma_function.c                            
#
#  After downloading change permissions: chmod 744 testlngamma.sh 
#  Execute as ./testlngamma.sh (unless your profile has a PATH set to
#                               this directory)

# Change! if ln_gamma_function.c is in a different directory.
gcc -c -o a.o ln_gamma_function.c

# Change! if gamma_function.c is in a different directory.
gcc -c -o x.o gamma_function.c

# Change! if testlngamma.c is in a different directory.
gcc -o cvers testlngamma.c a.o x.o -lm

# Change! if you profile has a PATH set to this directory or you
# want to change the name of the output file.

./cvers > TestLnGamma.txt

# Delete temporary files.
rm cvers
rm a.o
rm x.o

