
secante: main.o secante.o f.o 
	g++ -o secante main.o  secante.o f.o

main.o: main.cc secante.hh f.hh
	g++ -c main.cc

secante.o: secante.cc secante.hh
	g++ -c secante.cc

f.o: f.cc
	g++ -c f.cc

clean:
	rm -f secante *.o *~