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

Last change on this file since 56 was 56, checked in by hschwarz, 12 years ago

updated trunk (move to HM6.1)

  • Property svn:eol-style set to native
File size: 1.0 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
19# intermediate directory for object files
20OBJ_DIR                 = ./objects
21
22# the library name
23PRJ_NAME                = TLibVideoIO
24
25# version information
26MAJOR_VER               = 0
27MINOR_VER               = 28
28VER                             = $(MAJOR_VER).$(MINOR_VER)
29
30# defines to set
31DEFS                    = -DMSYS_LINUX -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DMSYS_UNIX_LARGEFILE
32
33# set objects
34OBJS            = \
35                        $(OBJ_DIR)/TVideoIOYuv.o \
36                                               
37
38LIBS                            = -lpthread
39
40DEBUG_LIBS                      =
41RELEASE_LIBS            =
42
43STAT_LIBS                       =
44DYN_LIBS                        =
45
46# the libraries to link with
47STAT_DEBUG_LIBS         = 
48STAT_RELEASE_LIBS       = 
49DYN_DEBUG_LIBS          =
50DYN_RELEASE_LIBS        =
51
52# name of the base makefile
53MAKE_FILE_NAME          = ../../common/makefile.base
54
55# include the base makefile
56include $(MAKE_FILE_NAME)
Note: See TracBrowser for help on using the repository browser.