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

ticktock: ticktock.c
	cc -o ticktock ticktock.c $(QUEUING) $(LIBS)

