# compile the programs


CC = gcc 

OBJ =  common.o dijkstra.o main.o 

main: common.h $(OBJ)
	 $(CC) -o  main $(OBJ) -lm

clean:
	rm *~	
