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