# This file is part of the Visual Effects Engine
#
# Copyright Tommi Ilmonen 2001
#


include ../Makeconf

# CUSTOMFLAGS   := $(DEBUGFLAGS)
# CUSTOMFLAGS   := $(RELEASEFLAGS)

#INCLUDES := $(INCLUDES) -I../base
# LIBDIRS := $(LIBDIRS) -L../base/IRIX-6.5 -L./IRIX-6.5

LIBRARY       = Solar


HDRS	      = Graphic.hpp \
		Renderer.hpp \
		Error.hpp \
		Garbage.hpp \
		GraphicTriangles.hpp \
		GraphicTriangleMesh.hpp \
		GraphicTriangleStrips.hpp \
		Model.hpp \
		Object.hpp \
		RotatingObject.hpp \
		AsciiRenderer.hpp \
		Stream.hpp

SRCS	      = Error.cpp \
		Garbage.cpp \
		GraphicTriangles.cpp \
		GraphicTriangleMesh.cpp \
		GraphicTriangleStrips.cpp \
		Model.cpp \
		Object.cpp \
		RotatingObject.cpp \
		AsciiRenderer.cpp \
		Stream.cpp

OBJS  = $(SRCS:%.cpp=%.o)


#MAINSRC = vee_gl.C

#MAINOBJ = vee_gl.o

# DLIBS	      = $(LIB)/libveebase.so

# SLIBS	      =	$(LIB)/libveebase.a

LIBS          = -lm

all: slib dlib 

include ../Makelibs

