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

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


.SUFFIXES: .m

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

tests: test1 test2

test1: test1.o ../libcoll.a
	$(CC) -g test1.o -o test1 $(LDFLAGS) 

test2: test2.o ../libcoll.a
	$(CC) -g test2.o -o test2 $(LDFLAGS) 
