# the SOURCE definiton lets you move your makefile to another position
CONFIG 				= LIBRARY

# set directories to your wanted values
SRC_DIR				= ./src
INC_DIR				= ./include
LIB_DIR				= ../lib
BIN_DIR				= ../bin


SRC_DIR1		=
SRC_DIR2		=
SRC_DIR3		=
SRC_DIR4		=

USER_INC_DIRS	= `pkg-config opencv --cflags` \
				-I../CommonLibStatic/include \
				
USER_LIB_DIRS	=


# intermediate directory for object files
OBJ_DIR				= ./objects

# the library name
PRJ_NAME			= GVDLib

# version information
MAJOR_VER		= 3
MINOR_VER		= 2
VER				= $(MAJOR_VER).$(MINOR_VER)

# defines to set
#DEFS		= -DMSYS_LINUX -DMSYS_UNIX_LARGEFILE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 #DT
DEFS		= -DMSYS_LINUX -DMSYS_UNIX_LARGEFILE -D_LARGEFILE64_SOURCE
# set objects
OBJS          		= 	\
					$(OBJ_DIR)/CameraParameter.o \
					$(OBJ_DIR)/Messages.o \

# set libs to link with
LIBS			=


DEBUG_LIBS			= -lCommonLibStaticd
RELEASE_LIBS		= -lCommonLibStatic

STAT_LIBS			=
DYN_LIBS			=


# the libraries to link with
DYN_DEBUG_LIBS		= -lCommonLibStaticd
DYN_DEBUG_PREREQS		= $(LIB_DIR)/libCommonLibStaticd.a
STAT_DEBUG_LIBS		= -lCommonLibStaticd
STAT_DEBUG_PREREQS		= $(LIB_DIR)/libCommonLibStaticd.a
DYN_RELEASE_LIBS	= -lCommonLibStatic
DYN_RELEASE_PREREQS	= $(LIB_DIR)/libCommonLibStatic.a
STAT_RELEASE_LIBS	= -lCommonLibStatic
STAT_RELEASE_PREREQS	= $(LIB_DIR)/libCommonLibStatic.a


# name of the base makefile
MAKE_FILE_NAME		= ../linux/makefile.base

# include the base makefile
include $(MAKE_FILE_NAME)
