QUEUING = ../../queuing/queuing.o
LIBS = -lcurses -ltermcap -lm

ticktock: ticktock.C
	CC -o ticktock ticktock.C $(QUEUING) $(LIBS)

