# Template makefile for computer players.  This will work for simple
# (one .[hm] file) players.  You need to change the xxxxxxx below to the
# name of your class.  More complex computer players (which need auxilliary
# custom objects) will need to modify this more extensively.

YOUCLASSNAME = xxxxxxxx
.SUFFIXES: .m .o .c .psw

.m.o:
	cc -O -g -Wall -c $*.m -o $*.o

$(YOURCLASSNAME).o: $(YOURCLASSNAME).m

all::
	$(MAKE) $(YOURCLASSNAME).o
