# Uncomment the COMPILER and OPTIONS lines corresponding to # the platform and compiler you plan to use. # If compiling with the gcc compiler: COMPILER = gcc OPTIONS = -O3 # Generic, should work on work on most machines but may not produce # the most optimal code #COMPILER = cc #OPTIONS = -O # You should not need to change anything below this line # Type 'make'. This will build the program 'MQLStest'. ################################################################## CC_LIB = -lm MQLStest: MQLS.c cholesky.c z.c chisq.c nrutil.c nrutil.h $(COMPILER) $(CC_LIB) $(OPTIONS) MQLS.c -o MQLStest