Last change
on this file since 1412 was
1412,
checked in by tech, 7 years ago
|
- Update HM-16.18
- Cleanups
- Encoder Extension
-- Representation formats
-- Parameter set sharing
-- GOP configuration
|
-
Property svn:eol-style set to
native
|
File size:
1.4 KB
|
Line | |
---|
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/TLibDecoder |
---|
6 | INC_DIR = ../../../../source/Lib |
---|
7 | LIB_DIR = ../../../../lib |
---|
8 | BIN_DIR = ../../../../bin |
---|
9 | |
---|
10 | SRC_DIR1 = |
---|
11 | SRC_DIR2 = |
---|
12 | SRC_DIR3 = |
---|
13 | SRC_DIR4 = |
---|
14 | |
---|
15 | |
---|
16 | USER_INC_DIRS = -I$(SRC_DIR) |
---|
17 | USER_LIB_DIRS = |
---|
18 | |
---|
19 | ifeq ($(HIGHBITDEPTH), 1) |
---|
20 | HBD=HighBitDepth |
---|
21 | else |
---|
22 | HBD= |
---|
23 | endif |
---|
24 | |
---|
25 | # intermediate directory for object files |
---|
26 | OBJ_DIR = ./objects$(HBD) |
---|
27 | |
---|
28 | # the library name |
---|
29 | PRJ_NAME = TLibDecoderAnalyser$(HBD) |
---|
30 | |
---|
31 | # version information |
---|
32 | MAJOR_VER = 0 |
---|
33 | MINOR_VER = 1 |
---|
34 | VER = $(MAJOR_VER).$(MINOR_VER) |
---|
35 | |
---|
36 | # defines to set |
---|
37 | DEFS = -DMSYS_LINUX -DRExt__DECODER_DEBUG_BIT_STATISTICS=1 |
---|
38 | |
---|
39 | # set objects |
---|
40 | OBJS = \ |
---|
41 | $(OBJ_DIR)/AnnexBread.o \ |
---|
42 | $(OBJ_DIR)/NALread.o \ |
---|
43 | $(OBJ_DIR)/SEIread.o \ |
---|
44 | $(OBJ_DIR)/SyntaxElementParser.o \ |
---|
45 | $(OBJ_DIR)/TDecBinCoderCABAC.o \ |
---|
46 | $(OBJ_DIR)/TDecCAVLC.o \ |
---|
47 | $(OBJ_DIR)/TDecCu.o \ |
---|
48 | $(OBJ_DIR)/TDecEntropy.o \ |
---|
49 | $(OBJ_DIR)/TDecGop.o \ |
---|
50 | $(OBJ_DIR)/TDecSbac.o \ |
---|
51 | $(OBJ_DIR)/TDecSlice.o \ |
---|
52 | $(OBJ_DIR)/TDecTop.o \ |
---|
53 | $(OBJ_DIR)/TDecConformance.o \ |
---|
54 | |
---|
55 | LIBS = -lpthread |
---|
56 | |
---|
57 | DEBUG_LIBS = |
---|
58 | RELEASE_LIBS = |
---|
59 | |
---|
60 | STAT_LIBS = |
---|
61 | DYN_LIBS = -ldl |
---|
62 | |
---|
63 | # the libraries to link with |
---|
64 | STAT_DEBUG_LIBS = |
---|
65 | STAT_RELEASE_LIBS = |
---|
66 | DYN_DEBUG_LIBS = |
---|
67 | DYN_RELEASE_LIBS = |
---|
68 | |
---|
69 | # name of the base makefile |
---|
70 | MAKE_FILE_NAME = ../../common/makefile.base |
---|
71 | |
---|
72 | # include the base makefile |
---|
73 | include $(MAKE_FILE_NAME) |
---|
Note: See
TracBrowser for help on using the repository browser.