all: queuing
queuing: queuing.C
	CC -o queuing.o -c queuing.C
clean:
	rm -f queuing.o

