]>
Commit | Line | Data |
---|---|---|
75515c52 | 1 | # |
2bda0e17 KB |
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). | |
f3ef286f | 6 | # The settings are for GnuWin32-derived compilers, i.e. Cygwin and Mingw32. |
2bda0e17 | 7 | # |
75515c52 GRG |
8 | # CVS_ID: $Id$ |
9 | # | |
f3ef286f JS |
10 | |
11 | # If using Cygwin, set this to 0. | |
12 | # If using Mingw32, set this to 1. | |
c25a510b | 13 | MINGW32=1 |
1a7f3062 JS |
14 | |
15 | # Set to the version you have | |
16 | MINGW32VERSION=2.95 | |
2bda0e17 | 17 | |
75515c52 GRG |
18 | # If building DLL, the version |
19 | WXVERSION=21_11 | |
20 | ||
21 | # Say yes if you have a "modern" linker that supports --shared option. | |
22 | # Note that you're probably going to wait forever for dlltool/gcc/etc | |
23 | # to build the DLL, so you should really use a newer linker that | |
24 | # supports --shared. | |
25 | LD_SUPPORTS_SHARED=yes | |
26 | ||
6474416b JS |
27 | # Set to the appropriate remove command |
28 | RM=rm -f | |
29 | ||
58a003ce | 30 | # Set to the appropriate copy command |
75515c52 | 31 | COPY=cp |
01dba85a | 32 | |
58a003ce GRG |
33 | # Cross compiling? Provide the target prefix (eg., i386-mingw32-) |
34 | # CROSS=i386-mingw32- | |
35 | ||
2bda0e17 KB |
36 | ########################## Compiler ################################## |
37 | ||
38 | # C++ compiler | |
f3ef286f JS |
39 | # Put a comment before --pipe for Cygwin, remove comment for Mingw32 2.95 |
40 | ||
41 | ifeq ($(MINGW32),1) | |
75515c52 | 42 | ifneq "$(findstring 2.95, $(MINGW32VERSION))" "" |
58a003ce | 43 | CC = $(CROSS)gcc --pipe -fvtable-thunks |
1a7f3062 | 44 | else |
58a003ce | 45 | CC = $(CROSS)gcc |
1a7f3062 | 46 | endif |
f3ef286f | 47 | else |
58a003ce | 48 | CC = $(CROSS)gcc |
f3ef286f | 49 | endif |
2bda0e17 KB |
50 | |
51 | # C compiler for pure C programs | |
2bda0e17 KB |
52 | CCC = $(CC) |
53 | ||
54 | # Compiler used for LEX generated C | |
58a003ce | 55 | CCLEX=$(CROSS)gcc |
2bda0e17 | 56 | |
75515c52 GRG |
57 | # GRG: This shouldn't be here! make is supposed to define the |
58 | # MAKE variable itself. | |
2bda0e17 KB |
59 | MAKE=make |
60 | ||
61 | # LEX | |
8870c26e | 62 | LEX=flex # -t -L |
2bda0e17 | 63 | |
57c208c5 | 64 | # YACC. yacc or bison |
2662e49e RR |
65 | YACC=byacc |
66 | #YACC=bison | |
2bda0e17 | 67 | |
57c208c5 | 68 | # Settings for Cyginw/Mingw32 |
58a003ce | 69 | RESCOMP=$(CROSS)windres |
57c208c5 JS |
70 | RCINPUTSWITCH=-i |
71 | RCOUTPUTSWITCH=-o | |
72 | RCINCSWITCH=--include-dir | |
73 | RCDEFSWITCH=--define | |
58a003ce | 74 | RCPREPROCESSOR=--preprocessor "$(CC) -c -E -xc-header -DRC_INVOKED" |
2bda0e17 | 75 | |
58a003ce | 76 | RESFLAGS=$(RCPREPROCESSOR) $(RCINCSWITCH) $(WXDIR)/include $(RCDEFSWITCH) __WIN32__ $(RCDEFSWITCH) __WIN95__ $(RCDEFSWITCH) __GNUWIN32__ |
2bda0e17 | 77 | |
75515c52 | 78 | # Needed to build a DLL if your linker does not support --shared option. |
58a003ce GRG |
79 | AS = $(CROSS)as |
80 | DLLTOOL = $(CROSS)dlltool | |
75515c52 | 81 | |
2bda0e17 KB |
82 | ########################## Compiler flags ############################# |
83 | ||
84 | # Miscellaneous compiler options | |
172fde4f GRG |
85 | # GRG: the __MINGW32__ option is not needed anymore |
86 | OPTIONS = -DSTRICT # -D__MINGW32__ | |
2bda0e17 KB |
87 | |
88 | # Debugging information | |
e4d18e7f | 89 | DEBUGFLAGS = -D__WXDEBUG__ |
2bda0e17 | 90 | |
2bda0e17 KB |
91 | WIN95=1 |
92 | ||
93 | ifeq ($(WIN95),0) | |
94 | # With 3.50, Win95 will use your existing icons to show smaller ones. | |
95 | # With 4.0, you'll have to follow Win95 procedures for icons or you'll get the | |
96 | # default Windows icon. | |
97 | APPVER=3.50 | |
98 | WINVERSION=-DWINVER=0x0350 -D__GNUWIN32__ -D__WIN32__ # Generic WIN32 | |
99 | else | |
100 | APPVER=3.50 # 4.0 | |
101 | # This means 'enable Windows 95 features' (in wxWindows and in VC++ 4.0). | |
102 | WINVERSION=-DWINVER=0x0400 -D__WIN95__ -D__GNUWIN32__ -D__WIN32__ | |
103 | endif | |
104 | ||
105 | CPU=i386 | |
106 | ||
107 | # Suffixes | |
108 | OBJSUFF=o | |
109 | SRCSUFF=cpp | |
110 | LIBPREFIX=lib | |
111 | LIBSUFF=a | |
112 | EXESUFF=.exe | |
113 | RESSUFF=res | |
114 | RSCSUFF=rsc | |
115 | ||
116 | # Warnings | |
2bda0e17 KB |
117 | WARN = -Wall |
118 | ||
2bda0e17 | 119 | # Which GUI, -Dwx_xview or -Dwx_motif (don't change this) |
34138703 | 120 | GUI = -D__WXMSW__ -D__WINDOWS__ |
2bda0e17 | 121 | |
75515c52 GRG |
122 | # According to Guillermo Rodriguez Garcia <guille@iies.es>, the |
123 | # -fno-pcc-struct-return option is needed to make the standard div() | |
124 | # function work - otherwise it returns absolutely incorrect results | |
125 | # which breaks the wxImage class. This is true at least for | |
126 | # mingw32-gcc2.8.1, don't know about others. | |
e4d18e7f | 127 | OPT = -fno-pcc-struct-return -O2 -fno-rtti -fno-exceptions |
2bda0e17 KB |
128 | |
129 | # Options for ar archiver | |
130 | # AROPTIONS = crs # For IRIX and Solaris (both SYSVR4). | |
58a003ce | 131 | AR = $(CROSS)ar |
2bda0e17 | 132 | AROPTIONS = ruv |
58a003ce | 133 | RANLIB = $(CROSS)ranlib |
2bda0e17 | 134 | |
b4fe5125 JS |
135 | # Extra compiler libraries |
136 | COMPLIBS= | |
2bda0e17 KB |
137 | |
138 | # Compiler or system-specific include paths | |
48d1144b | 139 | COMPPATHS= |
2bda0e17 | 140 | |
2bda0e17 KB |
141 | ########################## Directories ############################### |
142 | ||
2bda0e17 | 143 | WINLIBS=-lstdc++ -lgcc \ |
8870c26e | 144 | -lwinspool -lwinmm -lshell32 \ |
b4fe5125 JS |
145 | -lcomctl32 -lctl3d32 -lodbc32 -ladvapi32 \ |
146 | -lole32 -loleaut32 -luuid \ | |
147 | -lodbc32 -lwsock32# -loldnames | |
148 | ||
149 | #WINLIBS=-lstdc++ -lgcc \ | |
150 | # -lwinspool -lwinmm -lshell32 \ | |
151 | # -lcomctl32 -lctl3d32 -lodbc32 -ladvapi32 -lwsock32 # -loldnames | |
2bda0e17 KB |
152 | |
153 | # Shouldn't need to change these... | |
6a570331 RR |
154 | WXSRC=$(WXDIR)/src/msw |
155 | WXINC=$(WXDIR)/include | |
156 | WXBASESRC=$(WXDIR)/src/common | |
157 | WXLIB=$(WXDIR)/lib/$(LIBPREFIX)wx.$(LIBSUFF) | |
f3ef286f | 158 | |
1a7f3062 JS |
159 | GNUWIN32EXTRA=-I$(WXDIR)/include/wx/msw/gnuwin32 |
160 | ||
161 | ifeq ($(MINGW32),1) | |
75515c52 | 162 | ifneq "$(findstring 2.95, $(MINGW32VERSION))" "" |
1a7f3062 JS |
163 | GNUWIN32EXTRA= |
164 | endif | |
165 | endif | |
166 | ||
f3ef286f | 167 | ifeq ($(MINGW32),1) |
75515c52 | 168 | INC = -I$(WXINC) -I$(WXDIR)/src/png -I$(WXDIR)/src/jpeg -I$(WXDIR)/src/zlib -I$(WXDIR)/src/xpm -I$(WXDIR)/src/tiff $(EXTRAINC) $(COMPPATHS) |
f3ef286f | 169 | else |
75515c52 | 170 | INC = -I$(WXINC) -I$(WXDIR)/src/png -I$(WXDIR)/src/jpeg -I$(WXDIR)/src/zlib -I$(WXDIR)/src/xpm -I$(WXDIR)/src/tiff $(EXTRAINC) $(COMPPATHS) -I$(WXDIR)/include/wx/msw/gnuwin32 |
f3ef286f JS |
171 | endif |
172 | ||
6a570331 | 173 | RCLFLAGS=-cpp "cpp -lang-c++ -DWIN32 -D_WIN32 -DRCL_INVOKED -I$(WXWIN)/include" |
2bda0e17 | 174 | |
75515c52 GRG |
175 | ifdef WXUSINGDLL |
176 | # png, jpeg, etc are exported from wx dll, so skip and save on link time. | |
177 | LIBS = $(WXLIB) $(WINLIBS) $(COMPLIBS) $(EXTRALIBS) | |
178 | else | |
179 | LIBS = $(WXLIB) -lpng -ljpeg -lzlib -lxpm -ltiff $(WINLIBS) $(COMPLIBS) $(EXTRALIBS) | |
180 | endif | |
2bda0e17 KB |
181 | |
182 | WINFLAGS=-D_X86_=1 -DWIN32 -D_WIN32 $(WINVERSION) | |
183 | ||
184 | #for windows 95 | |
185 | XINCLUDE=$(WINFLAGS) | |
186 | XLIB=$(LIBS) | |
187 | LDLIBS = $(LIBS) | |
188 | ||
189 | # Directory for object files (don't change) | |
dbda9e86 | 190 | # OBJDIR = objects$(GUISUFFIX) |
881eba2c | 191 | OBJDIR = . |
2bda0e17 | 192 | |
75515c52 GRG |
193 | ifdef WXMAKINGDLL |
194 | EXTRADLLFLAGS = -DWXMAKINGDLL=1 -D_DLL=1 -D_WINDLL=1 | |
195 | WXLIB=$(WXDIR)/lib/$(LIBPREFIX)wx$(WXVERSION).$(LIBSUFF) | |
196 | endif | |
197 | ||
198 | ifdef WXUSINGDLL | |
199 | EXTRADLLFLAGS = -DWXUSINGDLL=1 | |
200 | WXLIB=$(WXDIR)/lib/$(LIBPREFIX)wx$(WXVERSION).$(LIBSUFF) | |
201 | endif | |
202 | ||
203 | ||
2bda0e17 | 204 | # You shouldn't need to change these... |
75515c52 GRG |
205 | CPPFLAGS = $(XINCLUDE) $(INC) $(OPTIONS) $(GUI) $(DEBUGFLAGS) $(WARN) $(OPT) $(EXTRACPPFLAGS) $(EXTRADLLFLAGS) |
206 | CFLAGS = $(XINCLUDE) $(INC) $(OPTIONS) $(GUI) $(DEBUGFLAGS) $(WARN) $(OPT) $(EXTRACFLAGS) -DWIN32_LEAN_AND_MEAN | |
57c208c5 | 207 | WINDOWSLDFLAGS=-Wl,--subsystem,windows -mwindows |
dbda9e86 | 208 | LDFLAGS = $(WINDOWSLDFLAGS) -L$(WXDIR)/lib $(EXTRALDFLAGS) |
2bda0e17 | 209 | |
2bda0e17 KB |
210 | .SUFFIXES: .rc .$(RESSUFF) .$(RSCSUFF) .cpp .c |
211 | ||
2bda0e17 KB |
212 | .$(SRCSUFF).$(OBJSUFF): |
213 | $(CC) -c $(CPPFLAGS) -o $@ $*.$(SRCSUFF) | |
214 | ||
215 | .c.o: | |
72c0d7d7 | 216 | $(CC) -c $(CFLAGS) -o $@ $*.c |
2bda0e17 KB |
217 | |
218 |