Subversion Repositories gelsvn

Rev

Rev 107 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
107 bj 1
// -*- MPC -*-
2
// $Id: bmakecommon.mpt 217 2006-05-05 09:35:48Z bj $
3
 
4
conditional_include "common"
5
 
6
// If there are more than two compilers,
7
// then the template needs to be modified to support that
8
compilers      = cbx bcc
9
configurations = Debug Release
217 bj 10
common_defines = WIN32 _WINDOWS
107 bj 11
common_libs    = import32$(LIB_EXT) cw32mti.lib ws2_32.lib
12
common_flags   = -a8
13
unicode_flags  = -WU
14
 
15
bcc {
16
  obj_ext = .obj
17
  dll_ext = .dll
18
  lib_ext = .lib
19
  exe_ext = .exe
20
  cc      = bcc32
21
  rc      = brcc32
22
  tlib    = tlib
23
  link    = ilink32
24
  thflags = -tWM
25
  dllflags = -Tpd -Gi -x -Gn -w-dup
26
  libflags = /C
27
  ccflags  = -q
28
  exeflags = -Tpe -x -Gn
29
  warnflags = -w-rvl -w-rch -w-ccc -w-obs -w-aus -w-pia -w-inl
30
}
31
 
32
cbx {
33
  obj_ext   = .o
34
  dll_ext   = .dll
35
  lib_ext   = .a
36
  exe_ext   = .exe
37
  cc        = bccx
38
  rc        = brcc32
39
  tlib      = ar
40
  link      = ilink
41
  thflags   = -tWM
42
  dllflags  = -Tpd -Gi -x -Gn -w-dup
43
  libflags  = cfrv
44
  ccflags   = -b
45
  exeflags  = -Tpe -x -Gn
46
  warnflags = -w-rvl -w-rch -w-ccc -w-obs -w-aus -w-pia -w-inl
47
}