Last change
on this file was
918,
checked in by seregin, 10 years ago
|
update make file, add TAppDecoderAnalyser and TLibDecoderAnalyser
|
File size:
1.1 KB
|
Rev | Line | |
---|
[125] | 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/TLibVideoIO |
---|
| 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 | |
---|
[918] | 19 | ifeq ($(HIGHBITDEPTH), 1) |
---|
| 20 | HBD=HighBitDepth |
---|
| 21 | else |
---|
| 22 | HBD= |
---|
| 23 | endif |
---|
| 24 | |
---|
[125] | 25 | # intermediate directory for object files |
---|
[918] | 26 | OBJ_DIR = ./objects$(HBD) |
---|
[125] | 27 | |
---|
| 28 | # the library name |
---|
[918] | 29 | PRJ_NAME = TLibVideoIO$(HBD) |
---|
[125] | 30 | |
---|
| 31 | # version information |
---|
| 32 | MAJOR_VER = 0 |
---|
| 33 | MINOR_VER = 28 |
---|
| 34 | VER = $(MAJOR_VER).$(MINOR_VER) |
---|
| 35 | |
---|
| 36 | # defines to set |
---|
| 37 | DEFS = -DMSYS_LINUX -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DMSYS_UNIX_LARGEFILE |
---|
| 38 | |
---|
| 39 | # set objects |
---|
| 40 | OBJS = \ |
---|
| 41 | $(OBJ_DIR)/TVideoIOYuv.o \ |
---|
| 42 | |
---|
| 43 | |
---|
| 44 | LIBS = -lpthread |
---|
| 45 | |
---|
| 46 | DEBUG_LIBS = |
---|
| 47 | RELEASE_LIBS = |
---|
| 48 | |
---|
| 49 | STAT_LIBS = |
---|
| 50 | DYN_LIBS = |
---|
| 51 | |
---|
| 52 | # the libraries to link with |
---|
| 53 | STAT_DEBUG_LIBS = |
---|
| 54 | STAT_RELEASE_LIBS = |
---|
| 55 | DYN_DEBUG_LIBS = |
---|
| 56 | DYN_RELEASE_LIBS = |
---|
| 57 | |
---|
| 58 | # name of the base makefile |
---|
| 59 | MAKE_FILE_NAME = ../../common/makefile.base |
---|
| 60 | |
---|
| 61 | # include the base makefile |
---|
| 62 | include $(MAKE_FILE_NAME) |
---|
Note: See
TracBrowser for help on using the repository browser.