# -*-mode: Makefile;-*-  ;; Have EMACS always use makefile-mode for this file. 
#
#   makeVar
#

# Don't change anything between the '####' lines!
###############################################################################
_DOT_DOT:=../${_DOT_DOT}
-include ${_DOT_DOT}makeVar
###############################################################################

# Add here your project settings, plese specify each entry in a separated
# line (use backslash to continue the lines).


# Please specify here the library name (without "lib" prefix
# and ".a"/".so"/".lib" extension)
TARGET_LIB:= ${PROJECT_NAME}

# Please add here all the directories with absolute path
# (e.g. -L/usr/local/lib) and libraries (e.g. -lsvs) needed by the executables.
ABS_LIBRARIES:= ${ABS_LIBRARIES} -lpthread
ifeq "$(HAVE_LIBJPEG)" "TRUE"
ABS_LIBRARIES:= ${ABS_LIBRARIES} -ljpeg
endif
ifeq "$(HAVE_ZLIB)" "TRUE"
ABS_LIBRARIES:= ${ABS_LIBRARIES} -lz
endif

# Please add here all the directories with relative path
# (e.g. -L../MyLib/lib)
REL_LIBRARIES:= $(REL_LIBRARIES:-L%=-L../%)

# Please add here all the objects with absolute path
# that are needed by the executables.
ABS_OBJECTS:= ${ABS_OBJECTS}

# Please add here all the objects with relative path
# that are needed by the executables.
REL_OBJECTS:= $(REL_OBJECTS:%=../%) \
              ../obj/*.o

# Flags for archive
ARFLAGS:= ${ARFLAGS}

# Flags for static dynamic linker
LDDYNFLAGS:= ${LDDYNFLAGS}


# Set the priority level
DIR_PRIORITY:=
DIR_LOWPRIORITY:=
SKIP_DIRECTORIES:=