Changeset 438 in 3DVCSoftware for branches/HTM-DEV-0.2-dev/build/linux
- Timestamp:
- 23 May 2013, 15:40:36 (12 years ago)
- Location:
- branches/HTM-DEV-0.2-dev/build/linux
- Files:
-
- 8 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HTM-DEV-0.2-dev/build/linux/app/TAppEncoder/makefile
r324 r438 41 41 42 42 43 DYN_DEBUG_LIBS = -lTLibEncoderd -lTLibCommond -lTLibVideoIOd -lTAppCommond 44 DYN_DEBUG_PREREQS = $(LIB_DIR)/libTLibEncoderd.a $(LIB_DIR)/libTLibCommond.a $(LIB_DIR)/libTLibVideoIOd.a $(LIB_DIR)/libTAppCommond.a 45 STAT_DEBUG_LIBS = -lTLibEncoderStaticd -lTLibCommonStaticd -lTLibVideoIOStaticd -lTAppCommonStaticd 46 STAT_DEBUG_PREREQS = $(LIB_DIR)/libTLibEncoderStaticd.a $(LIB_DIR)/libTLibCommonStaticd.a $(LIB_DIR)/libTLibVideoIOStaticd.a $(LIB_DIR)/libTAppCommonStaticd.a 43 DYN_DEBUG_LIBS = -lTLibEncoderd -lTLibCommond -lTLibVideoIOd -lTAppCommond -lTLibRendererd 44 DYN_DEBUG_PREREQS = $(LIB_DIR)/libTLibEncoderd.a $(LIB_DIR)/libTLibCommond.a $(LIB_DIR)/libTLibVideoIOd.a $(LIB_DIR)/libTAppCommond.a $(LIB_DIR)/libTLibRendererd.a 45 STAT_DEBUG_LIBS = -lTLibEncoderStaticd -lTLibCommonStaticd -lTLibVideoIOStaticd -lTAppCommonStaticd -lTLibRendererStaticd 46 STAT_DEBUG_PREREQS = $(LIB_DIR)/libTLibEncoderStaticd.a $(LIB_DIR)/libTLibCommonStaticd.a $(LIB_DIR)/libTLibVideoIOStaticd.a $(LIB_DIR)/libTAppCommonStaticd.a $(LIB_DIR)/libTLibRendererStaticd.a 47 47 48 DYN_RELEASE_LIBS = -lTLibEncoder -lTLibCommon -lTLibVideoIO -lTAppCommon 49 DYN_RELEASE_PREREQS = $(LIB_DIR)/libTLibEncoder.a $(LIB_DIR)/libTLibCommon.a $(LIB_DIR)/libTLibVideoIO.a $(LIB_DIR)/libTAppCommon.a 50 STAT_RELEASE_LIBS = -lTLibEncoderStatic -lTLibCommonStatic -lTLibVideoIOStatic -lTAppCommonStatic 51 STAT_RELEASE_PREREQS = $(LIB_DIR)/libTLibEncoderStatic.a $(LIB_DIR)/libTLibCommonStatic.a $(LIB_DIR)/libTLibVideoIOStatic.a $(LIB_DIR)/libTAppCommonStatic.a 48 DYN_RELEASE_LIBS = -lTLibEncoder -lTLibCommon -lTLibVideoIO -lTAppCommon -lTLibRenderer 49 DYN_RELEASE_PREREQS = $(LIB_DIR)/libTLibEncoder.a $(LIB_DIR)/libTLibCommon.a $(LIB_DIR)/libTLibVideoIO.a $(LIB_DIR)/libTAppCommon.a $(LIB_DIR)/libTLibRenderer.a 50 STAT_RELEASE_LIBS = -lTLibEncoderStatic -lTLibCommonStatic -lTLibVideoIOStatic -lTAppCommonStatic -lTLibRendererStatic 51 STAT_RELEASE_PREREQS = $(LIB_DIR)/libTLibEncoderStatic.a $(LIB_DIR)/libTLibCommonStatic.a $(LIB_DIR)/libTLibVideoIOStatic.a $(LIB_DIR)/libTAppCommonStatic.a $(LIB_DIR)/libTLibRendererStatic.a 52 52 53 53 -
branches/HTM-DEV-0.2-dev/build/linux/lib/TAppCommon/makefile
r324 r438 34 34 OBJS = \ 35 35 $(OBJ_DIR)/program_options_lite.o \ 36 $(OBJ_DIR)/TAppComCamPara.o \ 36 37 37 38 LIBS = -lpthread -
branches/HTM-DEV-0.2-dev/build/linux/makefile
r324 r438 9 9 $(MAKE) -C lib/TLibDecoder MM32=$(M32) 10 10 $(MAKE) -C lib/TLibEncoder MM32=$(M32) 11 $(MAKE) -C lib/TLibRenderer MM32=$(M32) 12 $(MAKE) -C lib/TLibExtractor MM32=$(M32) 11 13 $(MAKE) -C lib/TAppCommon MM32=$(M32) 12 14 $(MAKE) -C app/TAppDecoder MM32=$(M32) 13 15 $(MAKE) -C app/TAppEncoder MM32=$(M32) 16 $(MAKE) -C app/TAppRenderer MM32=$(M32) 17 $(MAKE) -C app/TAppExtractor MM32=$(M32) 14 18 $(MAKE) -C utils/annexBbytecount MM32=$(M32) 15 19 $(MAKE) -C utils/convert_NtoMbit_YCbCr MM32=$(M32) … … 20 24 $(MAKE) -C lib/TLibDecoder debug MM32=$(M32) 21 25 $(MAKE) -C lib/TLibEncoder debug MM32=$(M32) 26 $(MAKE) -C lib/TLibRenderer debug MM32=$(M32) 27 $(MAKE) -C lib/TLibExtractor debug MM32=$(M32) 22 28 $(MAKE) -C lib/TAppCommon debug MM32=$(M32) 23 29 $(MAKE) -C app/TAppDecoder debug MM32=$(M32) 24 30 $(MAKE) -C app/TAppEncoder debug MM32=$(M32) 31 $(MAKE) -C app/TAppRenderer debug MM32=$(M32) 32 $(MAKE) -C app/TAppExtractor debug MM32=$(M32) 25 33 $(MAKE) -C utils/annexBbytecount debug MM32=$(M32) 26 34 $(MAKE) -C utils/convert_NtoMbit_YCbCr debug MM32=$(M32) … … 31 39 $(MAKE) -C lib/TLibDecoder release MM32=$(M32) 32 40 $(MAKE) -C lib/TLibEncoder release MM32=$(M32) 41 $(MAKE) -C lib/TLibRenderer release MM32=$(M32) 42 $(MAKE) -C lib/TLibExtractor release MM32=$(M32) 33 43 $(MAKE) -C lib/TAppCommon release MM32=$(M32) 34 44 $(MAKE) -C app/TAppDecoder release MM32=$(M32) 35 45 $(MAKE) -C app/TAppEncoder release MM32=$(M32) 46 $(MAKE) -C app/TAppRenderer release MM32=$(M32) 47 $(MAKE) -C app/TAppExtractor release MM32=$(M32) 36 48 $(MAKE) -C utils/annexBbytecount release MM32=$(M32) 37 49 $(MAKE) -C utils/convert_NtoMbit_YCbCr release MM32=$(M32) … … 42 54 $(MAKE) -C lib/TLibDecoder clean MM32=$(M32) 43 55 $(MAKE) -C lib/TLibEncoder clean MM32=$(M32) 56 $(MAKE) -C lib/TLibRenderer clean MM32=$(M32) 57 $(MAKE) -C lib/TLibExtractor clean MM32=$(M32) 44 58 $(MAKE) -C lib/TAppCommon clean MM32=$(M32) 45 59 $(MAKE) -C app/TAppDecoder clean MM32=$(M32) 46 60 $(MAKE) -C app/TAppEncoder clean MM32=$(M32) 61 $(MAKE) -C app/TAppRenderer clean MM32=$(M32) 62 $(MAKE) -C app/TAppExtractor clean MM32=$(M32) 47 63 $(MAKE) -C utils/annexBbytecount clean MM32=$(M32) 48 64 $(MAKE) -C utils/convert_NtoMbit_YCbCr clean MM32=$(M32)
Note: See TracChangeset for help on using the changeset viewer.