OBJ = F.o GradF.o WolfeTest.o PrintScalar.o

fTest: fTest.o $(OBJ)
	gcc -lm -o fTest fTest.c $(OBJ) 
F.o: F.c
GradF.o: GradF.c
WolfeTest.o: WolfeTest.c
PrintScalar.o: PrintScalar.c

clean:
	rm fTest *.o
