
CFLAGS = -g -Wall

transit: transit.o
	$(CC) -o transit transit.o -lm


clean: 
	/bin/rm -f *.o transit

tar:
	tar -cvf transit.tar *.c Makefile
