objects = Grafo.o GrafoUtils.o TSPOtimo.o all: main run: ./tspotimo entrada main : $(objects) g++ -o tspotimo $(objects) $(objects): Grafo.h GrafoUtils.o: Grafo.h GrafoUtils.h GrafoUtils.cpp .PHONY: clean clean: -rm -rf tspotimo $(objects) saida