FILES  = tour_cost.c
INPUT  = tour_cost.c
CFLAGS = -Wall -g -lm
OUTPUT = tour_cost

all: tour_cost

server: $(FILES)
	gcc -o $(OUTPUT) $(CFLAGS) $(INPUT)

clean:
	rm -f tour_cost

