# makefile for Queue example program
# http://www.allisons.org/ll/ProgLang/Cplusplus/

# select your least feared compiler:
CC = /usr/local/bin/g++

Queue:            Queue.userProc.o Queue.driver.o
	$(CC) -o Queue Queue.userProc.o Queue.driver.o

Queue.userProc.o: Queue.h Queue.userProc.cpp
	$(CC) -c Queue.userProc.cpp

Queue.driver.o:   Queue.h Queue.userProc.h Queue.driver.cpp
	$(CC) -c Queue.driver.cpp

