# makefile for Lab 11
# target to create all executables for this lab
all: trig
#complete the dependency and action lines for the following targets
# Problem 2 - cos()
trig:
# source file dependencies
# You should fill these in and add any additional targets you need
driver1.o:
trig.o:
util.o:
# utility targets
clean:
rm -f *.o
real_clean: clean
rm -f trig a.out core