source: 3DVCSoftware/branches/HTM-DEV-0.3-dev2/build/linux/lib/TLibCommon/makefile @ 479

Last change on this file since 479 was 479, checked in by tech, 11 years ago
  • changed IV-MERGE HLS to match Test Model 4 spec
  • incorporated iv-refpic list to TComSlice
  • removed TComDepthMapGenerator
  • Property svn:eol-style set to native
File size: 1.7 KB
Line 
1# the SOURCE definiton lets move your makefile to another position
2CONFIG                  = LIBRARY
3
4# set pathes to the correct directories
5SRC_DIR                 = ../../../../source/Lib/TLibCommon
6INC_DIR                 = ../../../../source/Lib
7LIB_DIR                 = ../../../../lib
8BIN_DIR                 = ../../../../bin
9
10SRC_DIR1                = ../../../../source/Lib/libmd5
11SRC_DIR2                =
12SRC_DIR3                =
13SRC_DIR4                =
14
15
16USER_INC_DIRS   = -I$(SRC_DIR)
17USER_LIB_DIRS   =
18
19# intermediate directory for object files
20OBJ_DIR                 = ./objects
21
22# the library name
23PRJ_NAME                = TLibCommon
24
25# version information
26MAJOR_VER               = 0
27MINOR_VER               = 1
28VER                             = $(MAJOR_VER).$(MINOR_VER)
29
30# defines to set
31DEFS                    = -DMSYS_LINUX
32
33# set objects
34OBJS            = \
35                        $(OBJ_DIR)/ContextModel.o \
36                        $(OBJ_DIR)/ContextModel3DBuffer.o \
37                        $(OBJ_DIR)/SEI.o \
38                        $(OBJ_DIR)/TComCABACTables.o \
39                        $(OBJ_DIR)/TComSampleAdaptiveOffset.o \
40                        $(OBJ_DIR)/TComBitStream.o \
41                        $(OBJ_DIR)/TComDataCU.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)/TComPrediction.o \
50                        $(OBJ_DIR)/TComRdCost.o \
51                        $(OBJ_DIR)/TComRom.o \
52                        $(OBJ_DIR)/TComSlice.o \
53                        $(OBJ_DIR)/TComTrQuant.o \
54                        $(OBJ_DIR)/TComYuv.o \
55                        $(OBJ_DIR)/TComInterpolationFilter.o \
56                        $(OBJ_DIR)/libmd5.o \
57                        $(OBJ_DIR)/TComWeightPrediction.o \
58                        $(OBJ_DIR)/TComRdCostWeightPrediction.o \
59
60LIBS                            = -lpthread
61
62DEBUG_LIBS                      =
63RELEASE_LIBS            =
64
65STAT_LIBS                       =
66DYN_LIBS                        = -ldl
67
68# the libraries to link with
69STAT_DEBUG_LIBS         =
70STAT_RELEASE_LIBS       =
71DYN_DEBUG_LIBS          =
72DYN_RELEASE_LIBS        =
73
74# name of the base makefile
75MAKE_FILE_NAME          = ../../common/makefile.base
76
77# include the base makefile
78include $(MAKE_FILE_NAME)
Note: See TracBrowser for help on using the repository browser.