CC=/scratch/mccallum/ss-930430/xgcc

CFLAGS = -I/scratch/mccallum/ss-930430/include -I. -g 
LDFLAGS = -L/scratch/mccallum/ss-930430 -lobjc


.SUFFIXES: .m

.m.o:
	$(CC) $(CFLAGS) -c $*.m -o $*.o

LIBOFILES = Collection.o Set.o IndexedCollection.o Array.o \
	KeyedCollection.o MappedCollector.o \
	Bag.o Dictionary.o CircularArray.o Stack.o Queue.o \
	ListLink.o EltListLink.o LinkList.o LinkedList.o \
	SortedArray.o DelegateList.o List.o HashTable.o \
	collstd.o GapArray.o Storage.o

libcoll: libcoll.a

libcoll.a: $(LIBOFILES)
	ar rc libcoll.a $(LIBOFILES)
	ranlib libcoll.a

