| 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/TAppCommon |
|---|
| 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 | |
|---|
| [1029] | 19 | ifeq ($(HIGHBITDEPTH), 1) |
|---|
| 20 | HBD=HighBitDepth |
|---|
| 21 | else |
|---|
| 22 | HBD= |
|---|
| 23 | endif |
|---|
| 24 | |
|---|
| [125] | 25 | # intermediate directory for object files |
|---|
| [1029] | 26 | OBJ_DIR = ./objects$(HBD) |
|---|
| [125] | 27 | |
|---|
| 28 | # the library name |
|---|
| [1029] | 29 | PRJ_NAME = TAppCommon$(HBD) |
|---|
| [125] | 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 |
|---|
| 38 | |
|---|
| 39 | # set objects |
|---|
| 40 | OBJS = \ |
|---|
| 41 | $(OBJ_DIR)/program_options_lite.o \ |
|---|
| 42 | |
|---|
| 43 | LIBS = -lpthread |
|---|
| 44 | |
|---|
| 45 | DEBUG_LIBS = |
|---|
| 46 | RELEASE_LIBS = |
|---|
| 47 | |
|---|
| 48 | STAT_LIBS = |
|---|
| 49 | DYN_LIBS = -ldl |
|---|
| 50 | |
|---|
| 51 | # the libraries to link with |
|---|
| 52 | STAT_DEBUG_LIBS = |
|---|
| 53 | STAT_RELEASE_LIBS = |
|---|
| 54 | DYN_DEBUG_LIBS = |
|---|
| 55 | DYN_RELEASE_LIBS = |
|---|
| 56 | |
|---|
| 57 | # name of the base makefile |
|---|
| 58 | MAKE_FILE_NAME = ../../common/makefile.base |
|---|
| 59 | |
|---|
| 60 | # include the base makefile |
|---|
| 61 | include $(MAKE_FILE_NAME) |
|---|
Note: See
TracBrowser for help on using the repository browser.