Last change
on this file since 1417 was
1313,
checked in by tech, 9 years ago
|
Merged 14.1-update-dev1@1312.
|
-
Property svn:eol-style set to
native
|
File size:
1.3 KB
|
Rev | Line | |
---|
[2] | 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/TLibRenderer |
---|
[56] | 6 | INC_DIR = ../../../../source/Lib |
---|
[2] | 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 | |
---|
[1313] | 19 | ifeq ($(HIGHBITDEPTH), 1) |
---|
| 20 | HBD=HighBitDepth |
---|
| 21 | else |
---|
| 22 | HBD= |
---|
| 23 | endif |
---|
| 24 | |
---|
[2] | 25 | # intermediate directory for object files |
---|
[1313] | 26 | OBJ_DIR = ./objects$(HBD) |
---|
[2] | 27 | |
---|
| 28 | # the library name |
---|
[1313] | 29 | PRJ_NAME = TLibRenderer$(HBD) |
---|
[2] | 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)/TRenFilter.o \ |
---|
[56] | 42 | $(OBJ_DIR)/TRenInterpFilter.o \ |
---|
[2] | 43 | $(OBJ_DIR)/TRenImage.o \ |
---|
| 44 | $(OBJ_DIR)/TRenImagePlane.o \ |
---|
| 45 | $(OBJ_DIR)/TRenTop.o \ |
---|
| 46 | $(OBJ_DIR)/TRenModel.o \ |
---|
| 47 | $(OBJ_DIR)/TRenSingleModel.o \ |
---|
| 48 | $(OBJ_DIR)/TRenModSetupStrParser.o \ |
---|
| 49 | |
---|
| 50 | LIBS = -lpthread |
---|
| 51 | |
---|
| 52 | DEBUG_LIBS = |
---|
| 53 | RELEASE_LIBS = |
---|
| 54 | |
---|
| 55 | STAT_LIBS = |
---|
| 56 | DYN_LIBS = -ldl |
---|
| 57 | |
---|
| 58 | # the libraries to link with |
---|
| 59 | STAT_DEBUG_LIBS = |
---|
| 60 | STAT_RELEASE_LIBS = |
---|
| 61 | DYN_DEBUG_LIBS = |
---|
| 62 | DYN_RELEASE_LIBS = |
---|
| 63 | |
---|
| 64 | # name of the base makefile |
---|
| 65 | MAKE_FILE_NAME = ../../common/makefile.base |
---|
| 66 | |
---|
| 67 | # include the base makefile |
---|
| 68 | include $(MAKE_FILE_NAME) |
---|
Note: See
TracBrowser for help on using the repository browser.