|
Last change
on this file since 51 was
51,
checked in by suehring, 13 years ago
|
|
import HM 10.0 (HEVCSoftware/trunk rev. 3352)
|
|
File size:
992 bytes
|
| 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/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 | |
|---|
| 19 | # intermediate directory for object files |
|---|
| 20 | OBJ_DIR = ./objects |
|---|
| 21 | |
|---|
| 22 | # the library name |
|---|
| 23 | PRJ_NAME = TAppCommon |
|---|
| 24 | |
|---|
| 25 | # version information |
|---|
| 26 | MAJOR_VER = 0 |
|---|
| 27 | MINOR_VER = 1 |
|---|
| 28 | VER = $(MAJOR_VER).$(MINOR_VER) |
|---|
| 29 | |
|---|
| 30 | # defines to set |
|---|
| 31 | DEFS = -DMSYS_LINUX |
|---|
| 32 | |
|---|
| 33 | # set objects |
|---|
| 34 | OBJS = \ |
|---|
| 35 | $(OBJ_DIR)/program_options_lite.o \ |
|---|
| 36 | |
|---|
| 37 | LIBS = -lpthread |
|---|
| 38 | |
|---|
| 39 | DEBUG_LIBS = |
|---|
| 40 | RELEASE_LIBS = |
|---|
| 41 | |
|---|
| 42 | STAT_LIBS = |
|---|
| 43 | DYN_LIBS = -ldl |
|---|
| 44 | |
|---|
| 45 | # the libraries to link with |
|---|
| 46 | STAT_DEBUG_LIBS = |
|---|
| 47 | STAT_RELEASE_LIBS = |
|---|
| 48 | DYN_DEBUG_LIBS = |
|---|
| 49 | DYN_RELEASE_LIBS = |
|---|
| 50 | |
|---|
| 51 | # name of the base makefile |
|---|
| 52 | MAKE_FILE_NAME = ../../common/makefile.base |
|---|
| 53 | |
|---|
| 54 | # include the base makefile |
|---|
| 55 | include $(MAKE_FILE_NAME) |
|---|
Note: See
TracBrowser for help on using the repository browser.