]>
Commit | Line | Data |
---|---|---|
75515c52 | 1 | # |
2bda0e17 KB |
2 | # makeg95.env |
3 | # Common makefile settings for wxWindows programs | |
014e19de | 4 | # This file is included by all the other makefiles, thus changes |
2bda0e17 | 5 | # made here take effect everywhere (except where overriden). |
f3ef286f | 6 | # The settings are for GnuWin32-derived compilers, i.e. Cygwin and Mingw32. |
2bda0e17 | 7 | # |
102f951d GRG |
8 | # Customize this file to match your own settings. |
9 | # | |
75515c52 GRG |
10 | # CVS_ID: $Id$ |
11 | # | |
f3ef286f | 12 | |
74afbadc JS |
13 | # If using Cygwin beta, set this to 0. |
14 | # If using Mingw32 or Cygwin 1.0 or later, set this to 1. | |
741f371c | 15 | MINGW32=1 |
1a7f3062 JS |
16 | |
17 | # Set to the version you have | |
18 | MINGW32VERSION=2.95 | |
2bda0e17 | 19 | |
75515c52 | 20 | # If building DLL, the version |
9f24e0b5 | 21 | WXVERSION=233 |
b3bd664a MB |
22 | |
23 | ifndef UNICODE | |
c448540d MB |
24 | UNICODE=0 |
25 | endif | |
26 | ||
27 | ifndef FINAL | |
28 | FINAL=0 | |
29 | endif | |
30 | ||
31 | ifndef wxUSE_GUI | |
32 | wxUSE_GUI=1 | |
b3bd664a | 33 | endif |
75515c52 GRG |
34 | |
35 | # Say yes if you have a "modern" linker that supports --shared option. | |
36 | # Note that you're probably going to wait forever for dlltool/gcc/etc | |
37 | # to build the DLL, so you should really use a newer linker that | |
38 | # supports --shared. | |
39 | LD_SUPPORTS_SHARED=yes | |
40 | ||
102f951d GRG |
41 | # Set to the appropriate remove command (must support forward slashes) |
42 | # You can get a suitable rm.exe from ports/mingw32/extra.zip on the ftp site. | |
014e19de | 43 | RM=rm -f |
6474416b | 44 | |
102f951d | 45 | # Set to the appropriate copy command (must support forward slashes) |
a20a10fe JS |
46 | # You can get a suitable cp.exe from ports/mingw32/extra.zip on the ftp site. |
47 | COPY=cp | |
01dba85a | 48 | |
58a003ce GRG |
49 | # Cross compiling? Provide the target prefix (eg., i386-mingw32-) |
50 | # CROSS=i386-mingw32- | |
51 | ||
2bda0e17 KB |
52 | ########################## Compiler ################################## |
53 | ||
54 | # C++ compiler | |
f3ef286f JS |
55 | # Put a comment before --pipe for Cygwin, remove comment for Mingw32 2.95 |
56 | ||
46c0c2dc MB |
57 | # _GCC295 means GCC is GCC 2.95 |
58 | # _GCC3 mans GCC is 3.x or better (can actually just be 3.1 or better | |
59 | # for Cygwin/MinGW) | |
60 | _GCC295=$(if $(findstring 2.95, $(MINGW32VERSION)), 1,) | |
61 | _GCC3=$(if $(findstring 3., $(MINGW32VERSION)), 1,) | |
62 | ||
f3ef286f | 63 | ifeq ($(MINGW32),1) |
46c0c2dc MB |
64 | ifneq "$(_GCC295)$(_GCC3)" "" |
65 | CC = $(CROSS)gcc --pipe $(if $(_GCC3), , -fvtable-thunks) | |
1a7f3062 | 66 | else |
58a003ce | 67 | CC = $(CROSS)gcc |
1a7f3062 | 68 | endif |
f3ef286f | 69 | else |
58a003ce | 70 | CC = $(CROSS)gcc |
f3ef286f | 71 | endif |
2bda0e17 KB |
72 | |
73 | # C compiler for pure C programs | |
2bda0e17 KB |
74 | CCC = $(CC) |
75 | ||
76 | # Compiler used for LEX generated C | |
58a003ce | 77 | CCLEX=$(CROSS)gcc |
2bda0e17 | 78 | |
102f951d GRG |
79 | # This shouldn't be needed as make is supposed to define this |
80 | # variable itself. Uncomment it if your make complains. | |
81 | #MAKE=make | |
2bda0e17 | 82 | |
102f951d | 83 | # LEX (currently unused) |
8870c26e | 84 | LEX=flex # -t -L |
2bda0e17 | 85 | |
102f951d | 86 | # YACC (currently unused) |
2662e49e RR |
87 | YACC=byacc |
88 | #YACC=bison | |
2bda0e17 | 89 | |
57c208c5 | 90 | # Settings for Cyginw/Mingw32 |
102f951d GRG |
91 | # Some versions of windres cannot cope with the --preprocessor |
92 | # option. Uncomment the RCPREPROCESSOR line below if yours can. | |
58a003ce | 93 | RESCOMP=$(CROSS)windres |
57c208c5 JS |
94 | RCINPUTSWITCH=-i |
95 | RCOUTPUTSWITCH=-o | |
96 | RCINCSWITCH=--include-dir | |
97 | RCDEFSWITCH=--define | |
9f334bea JS |
98 | # Note that this can cause windres to fail (Win95/98 problem?) |
99 | # but commenting out RCPREPROCESSOR then does the trick. | |
100 | #RCPREPROCESSOR=--preprocessor "$(CC) -c -E -xc-header -DRC_INVOKED" | |
2bda0e17 | 101 | |
f4bfe7e0 JS |
102 | # Don't make this too long (e.g. by adding contrib/include/wx) because it will |
103 | # truncate the command line | |
53fdeb16 JS |
104 | # Note: --use-temp-file removed since Mingw32 2.95.2 doesn't recognise it |
105 | RESFLAGS=$(RCPREPROCESSOR) $(RCINCSWITCH) $(WXDIR)/include $(RCEXTRAINC) $(RCDEFSWITCH) __WIN32__ $(RCDEFSWITCH) __WIN95__ $(RCDEFSWITCH) __GNUWIN32__ | |
2bda0e17 | 106 | |
75515c52 | 107 | # Needed to build a DLL if your linker does not support --shared option. |
58a003ce GRG |
108 | AS = $(CROSS)as |
109 | DLLTOOL = $(CROSS)dlltool | |
75515c52 | 110 | |
2bda0e17 KB |
111 | ########################## Compiler flags ############################# |
112 | ||
113 | # Miscellaneous compiler options | |
172fde4f | 114 | # GRG: the __MINGW32__ option is not needed anymore |
d8c72298 | 115 | # add "-DHAVE_W32API_H" if you have w32api >= 0.5 |
172fde4f | 116 | OPTIONS = -DSTRICT # -D__MINGW32__ |
2bda0e17 KB |
117 | |
118 | # Debugging information | |
c448540d MB |
119 | ifeq ($(FINAL),0) |
120 | DEBUGFLAGS = -g -D__WXDEBUG__ | |
121 | endif | |
2bda0e17 | 122 | |
2bda0e17 KB |
123 | WIN95=1 |
124 | ||
125 | ifeq ($(WIN95),0) | |
126 | # With 3.50, Win95 will use your existing icons to show smaller ones. | |
127 | # With 4.0, you'll have to follow Win95 procedures for icons or you'll get the | |
128 | # default Windows icon. | |
129 | APPVER=3.50 | |
130 | WINVERSION=-DWINVER=0x0350 -D__GNUWIN32__ -D__WIN32__ # Generic WIN32 | |
131 | else | |
102f951d | 132 | APPVER=4.0 # 3.50 |
2bda0e17 KB |
133 | # This means 'enable Windows 95 features' (in wxWindows and in VC++ 4.0). |
134 | WINVERSION=-DWINVER=0x0400 -D__WIN95__ -D__GNUWIN32__ -D__WIN32__ | |
135 | endif | |
136 | ||
137 | CPU=i386 | |
138 | ||
139 | # Suffixes | |
140 | OBJSUFF=o | |
141 | SRCSUFF=cpp | |
142 | LIBPREFIX=lib | |
143 | LIBSUFF=a | |
144 | EXESUFF=.exe | |
145 | RESSUFF=res | |
146 | RSCSUFF=rsc | |
147 | ||
148 | # Warnings | |
2bda0e17 KB |
149 | WARN = -Wall |
150 | ||
c448540d MB |
151 | # build wxbase/wxMSW |
152 | ifeq ($(wxUSE_GUI),1) | |
153 | TOOLKIT=msw | |
154 | GUI = -D__WXMSW__ -D__WINDOWS__ | |
155 | else | |
156 | TOOLKIT=base | |
157 | GUI = -D__WXMSW__ -D__WINDOWS__ -DwxUSE_GUI=0 | |
158 | endif | |
159 | ||
2bda0e17 | 160 | |
75515c52 GRG |
161 | # According to Guillermo Rodriguez Garcia <guille@iies.es>, the |
162 | # -fno-pcc-struct-return option is needed to make the standard div() | |
163 | # function work - otherwise it returns absolutely incorrect results | |
164 | # which breaks the wxImage class. This is true at least for | |
165 | # mingw32-gcc2.8.1, don't know about others. | |
c448540d MB |
166 | ifeq ($(FINAL),1) |
167 | OPT = -fno-pcc-struct-return -O2 -fno-rtti -fno-exceptions | |
168 | else | |
169 | OPT = -fno-pcc-struct-return -fno-rtti -fno-exceptions | |
170 | endif | |
2bda0e17 KB |
171 | |
172 | # Options for ar archiver | |
173 | # AROPTIONS = crs # For IRIX and Solaris (both SYSVR4). | |
58a003ce | 174 | AR = $(CROSS)ar |
2bda0e17 | 175 | AROPTIONS = ruv |
58a003ce | 176 | RANLIB = $(CROSS)ranlib |
2bda0e17 | 177 | |
b4fe5125 JS |
178 | # Extra compiler libraries |
179 | COMPLIBS= | |
2bda0e17 KB |
180 | |
181 | # Compiler or system-specific include paths | |
48d1144b | 182 | COMPPATHS= |
2bda0e17 | 183 | |
2bda0e17 KB |
184 | ########################## Directories ############################### |
185 | ||
ae090fdb | 186 | OLELIBS=-lole32 -loleaut32 -luuid |
c448540d MB |
187 | BASELIBS=-lstdc++ -lgcc -lodbc32 -lwsock32 |
188 | ifeq ($(wxUSE_GUI),1) | |
189 | WINLIBS= $(BASELIBS) \ | |
190 | -lwinspool -lwinmm -lshell32 \ | |
191 | -lcomctl32 -lctl3d32 -lodbc32 -ladvapi32 \ | |
192 | -lodbc32 -lwsock32 -lopengl32 -lglu32 $(OLELIBS) # -loldnames | |
193 | else | |
194 | WINLIBS=$(BASELIBS) | |
195 | endif | |
b4fe5125 JS |
196 | |
197 | #WINLIBS=-lstdc++ -lgcc \ | |
198 | # -lwinspool -lwinmm -lshell32 \ | |
199 | # -lcomctl32 -lctl3d32 -lodbc32 -ladvapi32 -lwsock32 # -loldnames | |
2bda0e17 KB |
200 | |
201 | # Shouldn't need to change these... | |
6a570331 RR |
202 | WXSRC=$(WXDIR)/src/msw |
203 | WXINC=$(WXDIR)/include | |
204 | WXBASESRC=$(WXDIR)/src/common | |
f3ef286f | 205 | |
014e19de | 206 | GNUWIN32EXTRA=-I$(WXDIR)/include/wx/msw/gnuwin32 |
1a7f3062 JS |
207 | |
208 | ifeq ($(MINGW32),1) | |
75515c52 | 209 | ifneq "$(findstring 2.95, $(MINGW32VERSION))" "" |
1a7f3062 JS |
210 | GNUWIN32EXTRA= |
211 | endif | |
212 | endif | |
213 | ||
f6a35171 | 214 | #ifeq ($(MINGW32),1) |
9d8c2f41 | 215 | #INC = -I$(WXINC) -I$(WXDIR)/contrib/include -I$(WXDIR)/src/png -I$(WXDIR)/src/jpeg -I$(WXDIR)/src/zlib -I$(WXDIR)/src/tiff $(EXTRAINC) $(COMPPATHS) |
f6a35171 | 216 | #else |
c448540d | 217 | INC = -I$(WXDIR)/lib/$(TOOLKIT)$(INCEXT) -I$(WXINC) -I$(WXDIR)/contrib/include -I$(WXDIR)/src/regex -I$(WXDIR)/src/png -I$(WXDIR)/src/jpeg -I$(WXDIR)/src/zlib -I$(WXDIR)/src/tiff $(EXTRAINC) $(COMPPATHS) -I$(WXDIR)/include/wx/msw/gnuwin32 |
f6a35171 | 218 | #endif |
f3ef286f | 219 | |
6a570331 | 220 | RCLFLAGS=-cpp "cpp -lang-c++ -DWIN32 -D_WIN32 -DRCL_INVOKED -I$(WXWIN)/include" |
2bda0e17 | 221 | |
75515c52 GRG |
222 | ifdef WXUSINGDLL |
223 | # png, jpeg, etc are exported from wx dll, so skip and save on link time. | |
711df835 | 224 | LIBS = $(EXTRALIBS) $(WXLIB) $(WINLIBS) $(COMPLIBS) |
75515c52 | 225 | else |
08e0d1cc | 226 | LIBS = $(EXTRALIBS) $(WXLIB) -lregex -lpng -ljpeg -lzlib -ltiff $(WINLIBS) $(COMPLIBS) |
75515c52 | 227 | endif |
2bda0e17 KB |
228 | |
229 | WINFLAGS=-D_X86_=1 -DWIN32 -D_WIN32 $(WINVERSION) | |
230 | ||
231 | #for windows 95 | |
232 | XINCLUDE=$(WINFLAGS) | |
233 | XLIB=$(LIBS) | |
234 | LDLIBS = $(LIBS) | |
235 | ||
236 | # Directory for object files (don't change) | |
dbda9e86 | 237 | # OBJDIR = objects$(GUISUFFIX) |
881eba2c | 238 | OBJDIR = . |
2bda0e17 | 239 | |
c448540d MB |
240 | ifeq ($(FINAL),1) |
241 | DEBEXT= | |
242 | else | |
243 | DEBEXT=d | |
244 | endif | |
245 | ||
b3bd664a MB |
246 | ifeq ($(UNICODE),1) |
247 | UNIEXT=u | |
248 | else | |
249 | UNIEXT= | |
250 | endif | |
251 | ||
252 | ifeq ($(WXMAKINGDLL)$(WXUSINGDLL),) | |
c448540d | 253 | INCEXT=$(UNIEXT)$(DEBEXT) |
b3bd664a | 254 | else |
c448540d | 255 | INCEXT=dll$(UNIEXT)$(DEBEXT) |
b3bd664a MB |
256 | endif |
257 | ||
c448540d MB |
258 | WXLIB=$(WXDIR)/lib/$(LIBPREFIX)wx$(TOOLKIT)$(UNIEXT)$(DEBEXT).$(LIBSUFF) |
259 | ||
75515c52 GRG |
260 | ifdef WXMAKINGDLL |
261 | EXTRADLLFLAGS = -DWXMAKINGDLL=1 -D_DLL=1 -D_WINDLL=1 | |
c448540d | 262 | WXLIB=$(WXDIR)/lib/$(LIBPREFIX)wx$(TOOLKIT)$(WXVERSION)$(UNIEXT)$(DEBEXT).$(LIBSUFF) |
75515c52 GRG |
263 | endif |
264 | ||
265 | ifdef WXUSINGDLL | |
266 | EXTRADLLFLAGS = -DWXUSINGDLL=1 | |
c448540d | 267 | WXLIB=$(WXDIR)/lib/$(LIBPREFIX)wx$(TOOLKIT)$(WXVERSION)$(UNIEXT)$(DEBEXT).$(LIBSUFF) |
75515c52 GRG |
268 | endif |
269 | ||
270 | ||
2bda0e17 | 271 | # You shouldn't need to change these... |
75515c52 GRG |
272 | CPPFLAGS = $(XINCLUDE) $(INC) $(OPTIONS) $(GUI) $(DEBUGFLAGS) $(WARN) $(OPT) $(EXTRACPPFLAGS) $(EXTRADLLFLAGS) |
273 | CFLAGS = $(XINCLUDE) $(INC) $(OPTIONS) $(GUI) $(DEBUGFLAGS) $(WARN) $(OPT) $(EXTRACFLAGS) -DWIN32_LEAN_AND_MEAN | |
c448540d MB |
274 | ifeq ($(wxUSE_GUI),1) |
275 | WINDOWSLDFLAGS=-Wl,--subsystem,windows -mwindows | |
276 | endif | |
b14391d1 | 277 | LDFLAGS = $(WINDOWSLDFLAGS) -L$(WXDIR)/lib -L$(WXDIR)/contrib/lib $(EXTRALDFLAGS) |
2bda0e17 | 278 | |
e828e4f7 | 279 | .SUFFIXES: .rc .$(RESSUFF) .$(RSCSUFF) .cpp .cxx .c |
2bda0e17 KB |
280 | |
281 | .c.o: | |
72c0d7d7 | 282 | $(CC) -c $(CFLAGS) -o $@ $*.c |
2bda0e17 | 283 | |
e828e4f7 GRG |
284 | .cxx.o: |
285 | $(CC) -c $(CPPFLAGS) -o $@ $*.cxx | |
286 | ||
9b97ee33 GRG |
287 | .$(SRCSUFF).$(OBJSUFF): |
288 | $(CC) -c $(CPPFLAGS) -o $@ $*.$(SRCSUFF) | |
289 | ||
2bda0e17 | 290 | |
e828e4f7 | 291 |