OBJ = f.o fTable.o AllansSin.o
CC = gcc
fTest: fTest.c $(OBJ)
	gcc -lm -o fTest fTest.c $(OBJ)
f.o: f.c
fTable.o: fTable.c
AllansSin.o: AllansSin.c
clean:
	rm fTest *.o
	
