# 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 # If compiling with the Sun cc compiler on a Sparc machine. #COMPILER = cc #OPTIONS = -fast -xO4 # Generic, should work on work on most machines but may not produce # the most optimal code #COMPILER = cc #OPTIONS = -O # Uncomment the following line to produce code you can debug. #OPTIONS = -g # You should not need to change anything below this line ################################################################## spermseg: spermseg.o miscspermseg.o $(COMPILER) $(OPTIONS) spermseg.o miscspermseg.o -lm -o spermseg spermseg.o: spermseg.c $(COMPILER) $(OPTIONS) -c spermseg.c miscspermseg.o: miscspermseg.c $(COMPILER) $(OPTIONS) -c miscspermseg.c