
#include <config/sci.cf>

#ifdef SCI_MACHINE_Linux
TEMPLATE_OBJS = templates.o
TEMPLATE_SRCS = templates.cc
#endif

OBJS = BBox.o  BSphere.o  Grid.o  Plane.o  Point.o  Ray.o  \
	Transform.o tests.o  Vector.o \
	$(TEMPLATE_OBJS)
SRCS = BBox.cc BSphere.cc Grid.cc Plane.cc Point.cc Ray.cc \
	Transform.cc tests.cc Vector.cc \
	$(TEMPLATE_SRCS)

LIBNAME = Geometry

SCI_CLIBS = SCI_CCLibs
SO_LIBS =
SO_LDFLAGS = -L$(TOP)/lib -lMath -lClasslib -lMalloc -lm -lTester

SCIDependTarget($(SRCS))
SCIObjLibraryTarget($(LIBNAME),$(OBJS),$(SO_LIBS),$(SO_LDFLAGS))
