CXXFLAGS=-I../client -g -Wall

CXXFILES=BaseCreature.C Game.C GestureHistory.C NonWizard.C \
	Wizard.C Player.C
OBJFILES=$(patsubst %.C,%.o,$(CXXFILES))


all: scServer

clean:
	rm -f $(OBJFILES) scServer main.o

scServer: $(OBJFILES) main.C ../client/libSCClient.a
	$(CXX) $(CXXFLAGS) -L../client -o $@ $(OBJFILES) main.C -lSCClient 

depend:
	makedepend -I../client -f- *.C *.H > Makedepends

include Makedepends
