# the SOURCE definiton lets move your makefile to another position CONFIG = LIBRARY # set pathes to the correct directories SRC_DIR = ../../../../source/Lib/TLibVideoIO INC_DIR = ../../../../source/Lib LIB_DIR = ../../../../lib BIN_DIR = ../../../../bin SRC_DIR1 = SRC_DIR2 = SRC_DIR3 = SRC_DIR4 = USER_INC_DIRS = -I$(SRC_DIR) USER_LIB_DIRS = ifeq ($(HIGHBITDEPTH), 1) HBD=HighBitDepth else HBD= endif # intermediate directory for object files OBJ_DIR = ./objects$(HBD) # the library name PRJ_NAME = TLibVideoIO$(HBD) # version information MAJOR_VER = 0 MINOR_VER = 28 VER = $(MAJOR_VER).$(MINOR_VER) # defines to set DEFS = -DMSYS_LINUX -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DMSYS_UNIX_LARGEFILE # set objects OBJS = \ $(OBJ_DIR)/TVideoIOYuv.o \ LIBS = -lpthread DEBUG_LIBS = RELEASE_LIBS = STAT_LIBS = DYN_LIBS = # the libraries to link with STAT_DEBUG_LIBS = STAT_RELEASE_LIBS = DYN_DEBUG_LIBS = DYN_RELEASE_LIBS = # name of the base makefile MAKE_FILE_NAME = ../../common/makefile.base # include the base makefile include $(MAKE_FILE_NAME)