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