1 # Common settings for Borland 32-bit compilation (makefile.b32 files)
14 OBJ_PATH=$(WXDIR)\BORL
15 OUTPUTDIR=$(WXDIR)\BORL
24 !if "$(BCCDIR)" == "\.."
25 !error Your Borland compiler does not define MAKEDIR. Pleasedefine the BCCDIR variable in makeb32.env line 10, e.g. BCCDIR=d:\bc4
28 ARCHINCDIR=$(WXDIR)\lib\$(BORLAND_SUFFIX)
29 ARCHSETUPH=$(ARCHINCDIR)\wx\setup.h
30 #see below for SETUPSRCDIR
33 WXLIBDIR = $(WXDIR)\lib
36 WXINC = $(WXDIR)\include;$(WXDIR)\contrib\include;$(WXDIR)\src\iodbc;$(WXDIR)\src\regex;
37 WIN95FLAG = -D__WIN95__ -D__WINDOWS__
38 RFLAGS = -i$(WXDIR)\include;$(WXDIR)\src
40 # This should be changed to tlink32 if ilink32 is not available.
41 # Ilink32 is available on BC++ 5.02 and above, and all
42 # versions of C++ Builder.
58 DEBUG_FLAGS = -DUSE_DEFINE
62 DEBUG_FLAGS= -v -DWXDEBUG=1 -D__WXDEBUG__ -DUSE_DEFINE
66 # allow to use debugger but no wxDebugging functions
67 !if "$(FINAL)" == "hybrid"
80 # Target WXMAKINGDLL WXUSINGDLL WXBUILDDLL
83 # App use wxWin DLL 0 1 0
84 # DLL use wxWin DLL 0 1 1
85 # DLL use wxWin STATIC 0 0 1
88 # Determine the library name depending on the options, to allow
89 # multiple versions to coexist.
90 # Note that the clean target will only delete the appropriate .lib for the current
91 # options and all the obj files, and note that you must delete the obj files if you
92 # change the options so that they are compiled using the correct ones.
97 ## Use this if you want to use the UNIV controls set rather than the native ones
98 ## make -f makefile.b32 WXUSINGUNIV=1
99 !if "$(WXUSINGUNIV)" == "1"
101 BORLAND_SUFFIX=$(BORLAND_SUFFIX)v
102 ARCHINCDIR=$(ARCHINCDIR)v
103 SETUPSRCDIR=$(WXDIR)\include\wx\univ
108 SETUPSRCDIR=$(WXDIR)\include\wx\msw
111 #unicode builds handled inside setup.h
113 #a hybrid , does not set __WXDEBUG__ but sets -v (see above)
114 !if "$(FINAL)" == "hybrid"
115 DEBUG_SUFFIX=$(DEBUG_SUFFIX)h
118 !if "$(FINAL)" == "0"
119 DEBUG_SUFFIX=$(DEBUG_SUFFIX)d
122 !if "$(wxUSE_GUI)" == "0"
123 BORLAND_SUFFIX=$(BORLAND_SUFFIX)b
124 CPPFLAGS=-DwxUSE_GUI=0
127 !if "$(WXMAKINGDLL)" != "1" && "$(WXUSINGDLL)" != "1"
128 BORLAND_SUFFIX=$(BORLAND_SUFFIX)s
131 !if "$(WXMAKINGDLL)" == "1" || "$(WXUSINGDLL)" == "1"
135 # final names determined here
136 WXLIB=$(WXLIBDIR)\$(WXLIBNAME)_$(BORLAND_SUFFIX)$(DEBUG_SUFFIX).lib
137 WXDLL=$(WXLIBDIR)\$(WXLIBNAME)_$(BORLAND_SUFFIX)$(DEBUG_SUFFIX).dll
138 LIBTARGET=$(WXLIBDIR)\$(LIBTARGET)_$(DEBUG_SUFFIX).lib
139 OBJ_PATH=$(OBJ_PATH)_$(BORLAND_SUFFIX)$(DEBUG_SUFFIX)
141 !if "$(WXMAKINGDLL)" == "1"
142 DLL_FLAGS= -DWXMAKINGDLL=1 -D_RTLDLL
145 !if "$(WXUSINGDLL)" == "1"
146 DLL_FLAGS= -DWXUSINGDLL=1 -D_RTLDLL
153 !if "$(WXBUILDDLL)" == "1"
154 LINK_FLAGS= /Tpd /c $(EXTRALINKFLAGS)
157 CFG=$(OBJ_PATH)\$(CFG).cfg
158 CPPFLAGS=$(CPPFLAGS) $(DLL_FLAGS) @$(CFG) $(EXTRACPPFLAGS)
168 bcc32 $(CPPFLAGS) -c -o$(OBJ_PATH)\$(<B).obj {$< }
171 bcc32 $(CPPFLAGS) -P- -c -o$(OBJ_PATH)\$(<B).obj {$< }