include ../../Makefile.config

SRC = cos.cpp ExCFrustum.cpp ExCMatrix3x3.cpp ExCMatrix4x4.cpp ExCMesh.cpp \
	ExCVec3D.cpp ExCVertex.cpp ExMath.cpp ExQuaternion.cpp sin.cpp \
	ExCRandomNumber.cpp

OBJ = ${SRC:.cpp=.o}

all: depend $(OBJ)

depend: ${SRC}
	$(RM) depend
	$(CXX) -MM $(CXXFLAGS) $(SRC) > depend

clean:
	$(RM) *.o *~
	$(RM) depend

include depend
