[2] | 1 | # the SOURCE definiton lets move your makefile to another position |
---|
| 2 | CONFIG = LIBRARY |
---|
| 3 | |
---|
| 4 | # set pathes to the correct directories |
---|
| 5 | SRC_DIR = ../../../../source/Lib/TLibCommon |
---|
| 6 | INC_DIR = ../../../../source/Lib/TLibCommon |
---|
| 7 | LIB_DIR = ../../../../lib |
---|
| 8 | BIN_DIR = ../../../../bin |
---|
| 9 | |
---|
| 10 | SRC_DIR1 = ../../../../source/Lib/libmd5 |
---|
| 11 | SRC_DIR2 = |
---|
| 12 | SRC_DIR3 = |
---|
| 13 | SRC_DIR4 = |
---|
| 14 | |
---|
| 15 | |
---|
| 16 | USER_INC_DIRS = -I$(SRC_DIR) |
---|
| 17 | USER_LIB_DIRS = |
---|
| 18 | |
---|
| 19 | # intermediate directory for object files |
---|
| 20 | OBJ_DIR = ./objects |
---|
| 21 | |
---|
| 22 | # the library name |
---|
| 23 | PRJ_NAME = TLibCommon |
---|
| 24 | |
---|
| 25 | # version information |
---|
| 26 | MAJOR_VER = 0 |
---|
| 27 | MINOR_VER = 1 |
---|
| 28 | VER = $(MAJOR_VER).$(MINOR_VER) |
---|
| 29 | |
---|
| 30 | # defines to set |
---|
| 31 | DEFS = -DMSYS_LINUX |
---|
| 32 | |
---|
| 33 | # set objects |
---|
| 34 | OBJS = \ |
---|
| 35 | $(OBJ_DIR)/ContextModel.o \ |
---|
| 36 | $(OBJ_DIR)/ContextModel3DBuffer.o \ |
---|
| 37 | $(OBJ_DIR)/TComCABACTables.o \ |
---|
| 38 | $(OBJ_DIR)/TComAdaptiveLoopFilter.o \ |
---|
| 39 | $(OBJ_DIR)/TComBitStream.o \ |
---|
| 40 | $(OBJ_DIR)/TComDataCU.o \ |
---|
| 41 | $(OBJ_DIR)/TComDepthMapGenerator.o \ |
---|
| 42 | $(OBJ_DIR)/TComLoopFilter.o \ |
---|
| 43 | $(OBJ_DIR)/TComMotionInfo.o \ |
---|
| 44 | $(OBJ_DIR)/TComPattern.o \ |
---|
| 45 | $(OBJ_DIR)/TComPic.o \ |
---|
| 46 | $(OBJ_DIR)/TComPicSym.o \ |
---|
| 47 | $(OBJ_DIR)/TComPicYuv.o \ |
---|
| 48 | $(OBJ_DIR)/TComPicYuvMD5.o \ |
---|
| 49 | $(OBJ_DIR)/TComPredFilter.o \ |
---|
| 50 | $(OBJ_DIR)/TComPrediction.o \ |
---|
| 51 | $(OBJ_DIR)/TComRdCost.o \ |
---|
| 52 | $(OBJ_DIR)/TComRdCostWeightPrediction.o \ |
---|
| 53 | $(OBJ_DIR)/TComResidualGenerator.o \ |
---|
| 54 | $(OBJ_DIR)/TComRom.o \ |
---|
| 55 | $(OBJ_DIR)/TComSlice.o \ |
---|
| 56 | $(OBJ_DIR)/TComTrQuant.o \ |
---|
| 57 | $(OBJ_DIR)/TComYuv.o \ |
---|
| 58 | $(OBJ_DIR)/TComMVDRefData.o \ |
---|
| 59 | $(OBJ_DIR)/TComWedgelet.o \ |
---|
| 60 | $(OBJ_DIR)/TComWeightPrediction.o \ |
---|
| 61 | $(OBJ_DIR)/libmd5.o \ |
---|
| 62 | |
---|
| 63 | LIBS = -lpthread |
---|
| 64 | |
---|
| 65 | DEBUG_LIBS = |
---|
| 66 | RELEASE_LIBS = |
---|
| 67 | |
---|
| 68 | STAT_LIBS = |
---|
| 69 | DYN_LIBS = -ldl |
---|
| 70 | |
---|
| 71 | # the libraries to link with |
---|
| 72 | STAT_DEBUG_LIBS = |
---|
| 73 | STAT_RELEASE_LIBS = |
---|
| 74 | DYN_DEBUG_LIBS = |
---|
| 75 | DYN_RELEASE_LIBS = |
---|
| 76 | |
---|
| 77 | # name of the base makefile |
---|
| 78 | MAKE_FILE_NAME = ../../common/makefile.base |
---|
| 79 | |
---|
| 80 | # include the base makefile |
---|
| 81 | include $(MAKE_FILE_NAME) |
---|