source: 3DVCSoftware/trunk/build/linux/lib/TLibVideoIO/makefile @ 1313

Last change on this file since 1313 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.1 KB
Line 
1# the SOURCE definiton lets move your makefile to another position
2CONFIG                  = LIBRARY
3
4# set pathes to the correct directories
5SRC_DIR                 = ../../../../source/Lib/TLibVideoIO
6INC_DIR                 = ../../../../source/Lib
7LIB_DIR                 = ../../../../lib
8BIN_DIR                 = ../../../../bin
9
10SRC_DIR1                =
11SRC_DIR2                =
12SRC_DIR3                =
13SRC_DIR4                =
14
15
16USER_INC_DIRS   = -I$(SRC_DIR)
17USER_LIB_DIRS   =
18
19ifeq ($(HIGHBITDEPTH), 1)
20HBD=HighBitDepth
21else
22HBD=
23endif
24
25# intermediate directory for object files
26OBJ_DIR                 = ./objects$(HBD)
27
28# the library name
29PRJ_NAME                = TLibVideoIO$(HBD)
30
31# version information
32MAJOR_VER               = 0
33MINOR_VER               = 28
34VER                             = $(MAJOR_VER).$(MINOR_VER)
35
36# defines to set
37DEFS                    = -DMSYS_LINUX -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DMSYS_UNIX_LARGEFILE
38
39# set objects
40OBJS            = \
41                        $(OBJ_DIR)/TVideoIOYuv.o \
42                                               
43
44LIBS                            = -lpthread
45
46DEBUG_LIBS                      =
47RELEASE_LIBS            =
48
49STAT_LIBS                       =
50DYN_LIBS                        =
51
52# the libraries to link with
53STAT_DEBUG_LIBS         = 
54STAT_RELEASE_LIBS       = 
55DYN_DEBUG_LIBS          =
56DYN_RELEASE_LIBS        =
57
58# name of the base makefile
59MAKE_FILE_NAME          = ../../common/makefile.base
60
61# include the base makefile
62include $(MAKE_FILE_NAME)
Note: See TracBrowser for help on using the repository browser.