# Computer Science 367, Section 3, Fall 1997
# Programming Assignment Zero
# Instructor: Michael Siff (siff@cs.wisc.edu)
#
#set up compiler and options
CC=g++ -ansi

# generate an executable called baggage
baggage: main.o bag.o 
	$(CC) -o baggage main.o bag.o

main.o: main.C bag.h
	$(CC) -c main.C

bag.o: bag.C bag.h
	$(CC) -c bag.C
