#
# Makefile for ObjcGrammarTest
#
# By Gregor N. Purdy
#
# See the README file.
#


objctest: main.o TestClass.o
	cc -o objctest main.o TestClass.o

main.o: main.m TestClass.h
	cc -c -g -o main.o main.m

TestClass.o: TestClass.m TestClass.h
	cc -c -g -o TestClass.o TestClass.m

clean:
	rm -f *.o objctest


#
# End of file.
#