]>
Commit | Line | Data |
---|---|---|
227869da | 1 | # |
af111fc3 | 2 | # File: makevc.env |
227869da JS |
3 | # Author: Ulrich Leodolter |
4 | # Created: Wed May 17 08:36:42 1995 | |
5 | # Updated: | |
6 | # | |
7 | # MSVC++ 32-bit makefile include file | |
8 | # | |
9 | !include <ntwin32.mak> | |
10 | ||
0ad07724 | 11 | WXVERSION=21_14 |
227869da JS |
12 | WIN95=1 |
13 | ||
14 | !if "$(WIN95)" == "0" | |
15 | # With 3.50, Win95 will use your existing icons to show smaller ones. | |
16 | # With 4.0, you'll have to follow Win95 procedures for icons or you'll get the | |
17 | # default Windows icon. | |
18 | APPVER=3.50 | |
19 | WINVERSION=-DWINVER=0x0350 # Generic WIN32 | |
20 | !else | |
21 | APPVER=3.50 # 4.0 | |
22 | # This means 'enable Windows 95 features' (in wxWindows and in VC++ 4.0). | |
23 | WINVERSION=-DWINVER=0x0400 /D__WIN95__ | |
24 | !endif | |
25 | ||
26 | # On Alpha machines, change to CPU=ALPHA | |
27 | CPU=i386 | |
28 | ||
29 | # Suffixes | |
30 | OBJSUFF=obj | |
31 | SRCSUFF=cpp | |
32 | ||
e12f91dc RD |
33 | WAITFLAG=/w |
34 | ||
227869da | 35 | # If you set wxUSE_IOSTREAMH to 0, remove -Dtry=__try -Dexcept=__except -Dleave=__leave -Dfinally=__finally |
5fa399c9 JS |
36 | #WINFLAGS=-c -W3 -DCRTAPI1=_cdecl -DCRTAPI2=_cdecl -nologo -D_X86_=1 -DWIN32 -D__WIN32__ $(WINVERSION) |
37 | WINFLAGS=-c -W3 -DCRTAPI1=_cdecl -DCRTAPI2=_cdecl -nologo -DWIN32 -D__WIN32__ -D_WINDOWS $(WINVERSION) | |
227869da | 38 | WINLINKFLAGS=/INCREMENTAL:NO /NOLOGO -machine:$(CPU) -subsystem:windows,$(APPVER) |
227869da | 39 | WINLIBS=kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib oldnames.lib\ |
7921cf2b | 40 | comctl32.lib ctl3d32.lib odbc32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib wsock32.lib # libci.lib # libci.lib required for VC++ 4.2 |
227869da | 41 | |
b4d1ebf0 RD |
42 | # Set a WXWIN environment variable be the path to your WXWIN directory |
43 | WXDIR=$(WXWIN) | |
227869da JS |
44 | |
45 | WXSRC=$(WXDIR)\src\msw | |
46 | WXINC=$(WXDIR)\include | |
47 | WXBASESRC=$(WXDIR)\src\common | |
48 | ||
49 | ##################################################################### | |
50 | # These are the possible DLL/non-DLL usages: | |
51 | # | |
52 | # Type _DLL/_WINDLL WXUSINGDLL WXMAKINGDLL Library | |
53 | #-------------------------------------------------------------------- | |
54 | # Normal application - - - wx.lib | |
55 | # | |
cb1b6606 | 56 | # wxWin as DLL Defined - Defined wx$(WXVERSION).lib |
227869da | 57 | # |
cb1b6606 | 58 | # App using wxWin DLL - Defined - wx$(WXVERSION).lib |
227869da JS |
59 | # |
60 | # App built as one DLL Defined - - wx.lib | |
61 | # | |
62 | ###################################################################### | |
63 | # | |
64 | # Compiling your app: | |
65 | #-------------------- | |
66 | # when compiling an app to use the DLL version of wxWindows | |
67 | # (but not to be a DLL itself), set WXUSINGDLL to 1 in your | |
68 | # makefile just before including ntwxwin.mak. | |
69 | # To compile wxWin _and_ app itself as a DLL, set DLL to 1 | |
70 | # in ntwxwin.mak, and do not set WXUSINGDLL. | |
71 | # | |
72 | # Compiling wxWindows: | |
73 | #--------------------- | |
74 | # Use the dll target to compile wxWindows as DLL; then make 'pch' | |
75 | # to generate a precompiled header for your apps to use. BUG: must compile without | |
76 | # wxExpr (USE_WX_RESOURCES = 0) for this to link properly. Don't know why yet. | |
77 | # Use the dllapp target to compile wxWindows for making a DLL app (not implemented yet) | |
78 | ||
79 | #DLL=0 | |
80 | ||
227869da JS |
81 | !if "$(WXUSINGDLL)" == "1" |
82 | EXTRADLLFLAGS=/DWXUSINGDLL=1 | |
83 | !endif | |
84 | ||
85 | !if "$(WXMAKINGDLL)" == "1" | |
86 | EXTRADLLFLAGS=/DWXMAKINGDLL=1 | |
87 | !endif | |
88 | ||
89 | !if "$(WXMAKINGDLL)" == "0" && "$(DLL)" == "1" | |
90 | EXTRADLLFLAGS= | |
91 | !endif | |
92 | ||
93 | !if "$(NOMAIN)" == "1" | |
94 | EXTRADLLFLAGS=$(EXTRADLLFLAGS) /DNOMAIN | |
95 | !endif | |
96 | ||
227869da JS |
97 | !ifndef FINAL |
98 | FINAL=0 | |
99 | DEBUG=1 | |
100 | !endif | |
101 | ||
102 | !ifndef DLL | |
103 | DLL=0 | |
104 | !endif | |
105 | ||
106 | # Set this to 1 if you don't want to use precompiled headers | |
107 | !ifndef NOPCH | |
108 | NOPCH=0 | |
109 | !endif | |
110 | ||
ca5c8b2d | 111 | # This sets 'D' to a suitable directory name |
5fa399c9 JS |
112 | # for this kind of build, and WXLIBNAME to one of wx (static release), wxd (static debug), |
113 | # wx$(WXVERSION) (DLL release), wx$(WXVERSION)d (DLL debug) | |
ca5c8b2d JS |
114 | |
115 | !if "$(WXMAKINGDLL)" == "1" || "$(WXUSINGDLL)" == "1" | |
cb1b6606 | 116 | WXLIBNAME=wx$(WXVERSION) |
ca5c8b2d JS |
117 | !else |
118 | WXLIBNAME=wx | |
119 | !endif | |
120 | ||
a4fe6524 RD |
121 | !if "$(NEW_WXLIBNAME)" != "" |
122 | WXLIBNAME=$(NEW_WXLIBNAME) | |
123 | !endif | |
124 | ||
ca5c8b2d JS |
125 | !if "$(FINAL)" == "1" |
126 | D=Release | |
127 | !else | |
128 | D=Debug | |
5fa399c9 | 129 | LIBEXT=d |
cb1b6606 | 130 | WXLIBNAME=$(WXLIBNAME)$(LIBEXT) |
ca5c8b2d JS |
131 | !endif |
132 | ||
133 | !if "$(WXMAKINGDLL)" == "1" || "$(WXUSINGDLL)" == "1" | |
134 | D=$(D)DLL | |
135 | !endif | |
136 | ||
137 | WXLIB=$(WXDIR)\lib\$(WXLIBNAME).lib | |
138 | ||
5fa399c9 JS |
139 | INC=-I$(WXINC) -I$(WXDIR)/contrib/include -I$(WXDIR)/src/png -I$(WXDIR)/src/zlib -I$(WXDIR)/src/jpeg -I$(WXDIR)/src/tiff $(EXTRAINC) |
140 | LIBS = $(EXTRALIBS) $(WXLIB) $(WINLIBS) $(WXDIR)\lib\png$(LIBEXT).lib $(WXDIR)\lib\zlib$(LIBEXT).lib $(WXDIR)\lib\jpeg$(LIBEXT).lib $(WXDIR)\lib\tiff$(LIBEXT).lib $(WXDIR)\lib\xpm$(LIBEXT).lib | |
ca5c8b2d | 141 | |
227869da JS |
142 | MAKEPRECOMP=/YcWX/WXPREC.H |
143 | OPTIONS= | |
144 | ||
145 | !if "$(FINAL)" == "0" | |
146 | OPT = /Od /Gy | |
147 | # ***N.B.*** to save space/time, comment out /FR to avoid browse info (.sbr files) being generated | |
148 | DEBUG_FLAGS= /Zi /D__WXDEBUG__ # /DDEBUG=1 # /FR | |
149 | LINK_DEBUG_FLAGS=-debug:full -debugtype:cv # /PDB:NONE | |
7bf54362 | 150 | _CRTFLAG=/MDd |
227869da JS |
151 | !else |
152 | # /O1 - smallest code | |
153 | # /O2 - fastest code | |
154 | OPT = /O1 # /O2 # /Od | |
155 | DEBUG_FLAGS= | |
156 | LINK_DEBUG_FLAGS=/RELEASE | |
7bf54362 RD |
157 | _CRTFLAG=/MD |
158 | !endif | |
159 | ||
160 | !if "$(CRTFLAG)" == "" | |
161 | CRTFLAG=$(_CRTFLAG) | |
227869da JS |
162 | !endif |
163 | ||
164 | !if "$(DLL)" == "0" | |
165 | ||
166 | !if "$(NOPCH)" == "1" | |
167 | PCH= | |
168 | PRECOMP= | |
169 | MAKEPRECOMP= | |
170 | !else | |
5fa399c9 JS |
171 | PCH=wxvc.pch |
172 | PRECOMP=/YuWX/WXPREC.H /Fp$(WXDIR)\src\msw\$D\$(PCH) /Fd$(WXDIR)\src\msw\$D\vc60.pdb | |
227869da JS |
173 | MAKEPRECOMP=/YcWX/WXPREC.H |
174 | !endif | |
175 | ||
176 | CPPFLAGS=$(WINFLAGS) $(DEBUG_FLAGS) $(PRECOMP) $(EXTRAFLAGS) /D__WXMSW__ $(INC) $(OPT) $(EXTRADLLFLAGS) $(CRTFLAG) /D__WINDOWS__ /GX /DSTRICT $(OVERRIDEFLAGS) | |
177 | # If you don't include wxprec.h, use CPPFLAGS2 | |
178 | CPPFLAGS2=$(WINFLAGS) $(DEBUG_FLAGS) /D__WXMSW__ $(INC) $(EXTRAFLAGS) $(OPT) $(EXTRADLLFLAGS) $(CRTFLAG) /D__WINDOWS__ /GX /DSTRICT $(OVERRIDEFLAGS) | |
179 | LINKFLAGS=$(LINK_DEBUG_FLAGS) $(WINLINKFLAGS) -entry:WinMainCRTStartup | |
180 | DUMMY=dummy | |
181 | ||
182 | !else | |
183 | ||
184 | !if "$(WXMAKINGDLL)" == "1" | |
5fa399c9 | 185 | PCH=wxvc.pch |
227869da JS |
186 | DUMMY=dummydll |
187 | !else | |
5fa399c9 | 188 | PCH=wxvc.pch |
227869da JS |
189 | DUMMY=dummy |
190 | !endif | |
191 | ||
5fa399c9 | 192 | PRECOMP=/YuWX/WXPREC.H /Fp$(WXDIR)\src\msw\$D\$(PCH) /Fd$(WXDIR)\lib\$(WXLIBNAME).pdb |
227869da JS |
193 | CPPFLAGS=$(WINFLAGS) $(DEBUG_FLAGS) $(PRECOMP) $(EXTRAFLAGS) /D__WXMSW__ $(INC) $(OPT) /D_DLL $(CRTFLAG) $(EXTRADLLFLAGS) /D_WINDOWS /D__WINDOWS__ /D_WINDLL |
194 | CPPFLAGS2=$(WINFLAGS) $(DEBUG_FLAGS) /D__WXMSW__ $(INC) $(EXTRAFLAGS) $(OPT) /D_DLL $(CRTFLAG) $(EXTRADLLFLAGS) /D_WINDOWS /D__WINDOWS__ /D_WINDLL | |
195 | LINKFLAGS=$(LINK_DEBUG_FLAGS) -machine:i386 -subsystem:windows,$(APPVER) -dll # -entry:_DllMainCRTStartup$(DLLENTRY) | |
196 | !endif | |
197 | ||
ca5c8b2d | 198 | DUMMYOBJ=$(WXDIR)\src\msw\$D\$(DUMMY).obj |
227869da | 199 | |
e9c4b1a2 JS |
200 | .c.obj: |
201 | cl @<< | |
202 | $(CPPFLAGS2) /Fo$@ /c $< | |
203 | << | |
204 | ||
205 | .cpp.obj: | |
206 | cl @<< | |
207 | $(CPPFLAGS2) /Fo$@ /c $< | |
208 | << | |
209 |