# Makefile for workoutProject1
# P. Conrad for CISC181, 03/15/06
# A project to show how to read a CSV file into an array of structs
# also to show how to write a Makefile from scratch


# the BINARIES variable is generally a list of the executable programs
# it is typically a list of the files that have a main() function in them

CCC = CC
#CCC = g++

BINARIES = readWorkoutData testComputeSplitTime




all: ${BINARIES}

readWorkoutData: readWorkoutData.o computeSplitTime.o
	${CCC} -o readWorkoutData readWorkoutData.o computeSplitTime.o


clean:
	/bin/rm -f ${BINARIES} *.o core



