Changeset 1313 in 3DVCSoftware for trunk/build/linux/lib


Ignore:
Timestamp:
13 Aug 2015, 17:38:13 (9 years ago)
Author:
tech
Message:

Merged 14.1-update-dev1@1312.

Location:
trunk/build/linux/lib
Files:
2 added
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/build/linux/lib/TAppCommon/makefile

    r56 r1313  
    1717USER_LIB_DIRS   =
    1818
     19ifeq ($(HIGHBITDEPTH), 1)
     20HBD=HighBitDepth
     21else
     22HBD=
     23endif
     24
    1925# intermediate directory for object files
    20 OBJ_DIR                 = ./objects
     26OBJ_DIR                 = ./objects$(HBD)
    2127
    2228# the library name
    23 PRJ_NAME                = TAppCommon
     29PRJ_NAME                = TAppCommon$(HBD)
    2430
    2531# version information
  • trunk/build/linux/lib/TLibCommon/makefile

    r608 r1313  
    1717USER_LIB_DIRS   =
    1818
     19ifeq ($(HIGHBITDEPTH), 1)
     20HBD=HighBitDepth
     21else
     22HBD=
     23endif
     24
    1925# intermediate directory for object files
    20 OBJ_DIR                 = ./objects
     26OBJ_DIR                 = ./objects$(HBD)
    2127
    2228# the library name
    23 PRJ_NAME                = TLibCommon
     29PRJ_NAME                = TLibCommon$(HBD)
    2430
    2531# version information
     
    3339# set objects
    3440OBJS            = \
     41                        $(OBJ_DIR)/Debug.o \
     42                        $(OBJ_DIR)/TComPicYuv.o \
     43                        $(OBJ_DIR)/TComYuv.o \
    3544                        $(OBJ_DIR)/ContextModel.o \
    3645                        $(OBJ_DIR)/ContextModel3DBuffer.o \
     
    3948                        $(OBJ_DIR)/TComSampleAdaptiveOffset.o \
    4049                        $(OBJ_DIR)/TComBitStream.o \
     50                        $(OBJ_DIR)/TComChromaFormat.o \
    4151                        $(OBJ_DIR)/TComDataCU.o \
    4252                        $(OBJ_DIR)/TComLoopFilter.o \
     
    4555                        $(OBJ_DIR)/TComPic.o \
    4656                        $(OBJ_DIR)/TComPicSym.o \
    47                         $(OBJ_DIR)/TComPicYuv.o \
    4857                        $(OBJ_DIR)/TComPicYuvMD5.o \
    4958                        $(OBJ_DIR)/TComPrediction.o \
     
    5261                        $(OBJ_DIR)/TComSlice.o \
    5362                        $(OBJ_DIR)/TComTrQuant.o \
    54                         $(OBJ_DIR)/TComYuv.o \
     63                        $(OBJ_DIR)/TComTU.o \
    5564                        $(OBJ_DIR)/TComInterpolationFilter.o \
    5665                        $(OBJ_DIR)/libmd5.o \
  • trunk/build/linux/lib/TLibDecoder/makefile

    r608 r1313  
    1717USER_LIB_DIRS   =
    1818
     19ifeq ($(HIGHBITDEPTH), 1)
     20HBD=HighBitDepth
     21else
     22HBD=
     23endif
     24
    1925# intermediate directory for object files
    20 OBJ_DIR                 = ./objects
     26OBJ_DIR                 = ./objects$(HBD)
    2127
    2228# the library name
    23 PRJ_NAME                = TLibDecoder
     29PRJ_NAME                = TLibDecoder$(HBD)
    2430
    2531# version information
  • trunk/build/linux/lib/TLibEncoder/makefile

    r608 r1313  
    1717USER_LIB_DIRS   =
    1818
     19ifeq ($(HIGHBITDEPTH), 1)
     20HBD=HighBitDepth
     21else
     22HBD=
     23endif
     24
    1925# intermediate directory for object files
    20 OBJ_DIR                 = ./objects
     26OBJ_DIR                 = ./objects$(HBD)
    2127
    2228# the library name
    23 PRJ_NAME                = TLibEncoder
     29PRJ_NAME                = TLibEncoder$(HBD)
    2430
    2531# version information
     
    3440OBJS            = \
    3541                        $(OBJ_DIR)/NALwrite.o \
     42                        $(OBJ_DIR)/SEIEncoder.o \
    3643                        $(OBJ_DIR)/SEIwrite.o \
    3744                        $(OBJ_DIR)/SyntaxElementWriter.o \
     
    3946                        $(OBJ_DIR)/TEncBinCoderCABACCounter.o \
    4047                        $(OBJ_DIR)/TEncSampleAdaptiveOffset.o \
    41                         $(OBJ_DIR)/TEncAnalyze.o \
    4248                        $(OBJ_DIR)/TEncCavlc.o \
    4349                        $(OBJ_DIR)/TEncCu.o \
  • trunk/build/linux/lib/TLibExtractor/makefile

    r42 r1313  
    44# set pathes to the correct directories
    55SRC_DIR                 = ../../../../source/Lib/TLibExtractor
    6 INC_DIR                 = ../../../../source/Lib/TLibExtractor
     6INC_DIR                 = ../../../../source/Lib
    77LIB_DIR                 = ../../../../lib
    88BIN_DIR                 = ../../../../bin
     
    1717USER_LIB_DIRS   =
    1818
     19ifeq ($(HIGHBITDEPTH), 1)
     20HBD=HighBitDepth
     21else
     22HBD=
     23endif
     24
    1925# intermediate directory for object files
    20 OBJ_DIR                 = ./objects
     26OBJ_DIR                 = ./objects$(HBD)
    2127
    2228# the library name
    23 PRJ_NAME                = TLibExtractor
     29PRJ_NAME                = TLibExtractor$(HBD)
    2430
    2531# version information
  • trunk/build/linux/lib/TLibRenderer/makefile

    r56 r1313  
    1717USER_LIB_DIRS   =
    1818
     19ifeq ($(HIGHBITDEPTH), 1)
     20HBD=HighBitDepth
     21else
     22HBD=
     23endif
     24
    1925# intermediate directory for object files
    20 OBJ_DIR                 = ./objects
     26OBJ_DIR                 = ./objects$(HBD)
    2127
    2228# the library name
    23 PRJ_NAME                = TLibRenderer
     29PRJ_NAME                = TLibRenderer$(HBD)
    2430
    2531# version information
  • trunk/build/linux/lib/TLibVideoIO/makefile

    r56 r1313  
    1717USER_LIB_DIRS   =
    1818
     19ifeq ($(HIGHBITDEPTH), 1)
     20HBD=HighBitDepth
     21else
     22HBD=
     23endif
     24
    1925# intermediate directory for object files
    20 OBJ_DIR                 = ./objects
     26OBJ_DIR                 = ./objects$(HBD)
    2127
    2228# the library name
    23 PRJ_NAME                = TLibVideoIO
     29PRJ_NAME                = TLibVideoIO$(HBD)
    2430
    2531# version information
Note: See TracChangeset for help on using the changeset viewer.