# Makefile for QueueMaster v1.5

CC	= CC
FASTOPTS= -fast -noex -s

all:  $(OBJS)

#  I usually use this one
Qfast:	Queue.C Queue.h
	$(CC) Queue.C -o Queue $(FASTOPTS)

#  No optimizations is no fun
QNorm:	Queue.C Queue.h
	$(CC) Queue.C -o Queue

Qtest:	Queue.C Queue.h
	$(CC) Queue.C -o Qtest
