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


include ../Makeconf

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

ifeq ($(RMANPATH),)
total: 
		echo ""
		echo "Not compiling anything (env var RMANPATH not set)"
		echo ""
endif

LIBRARY       = veerman

PROGRAM       = vee

HDRS	      = vee_rman_renderer.h


SRCS	      = vee_rman_renderer.C


OBJS	      = vee_rman_renderer.o


#MAINSRC = vee_gl.C

#MAINOBJ = vee_gl.o

DLIBS	      = $(LIB)/libveebase.so

SLIBS	      =	$(LIB)/libveebase.a

LIBS          =  -ljpeg -lm

# We must NOT create a shared lib. If we do that the final app will crash
all: slib dlib

include ../Makelibs

