]>
Commit | Line | Data |
---|---|---|
227869da JS |
1 | # |
2 | # File: ntwxwin.env | |
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 | ||
11 | WIN95=1 | |
12 | ||
13 | !if "$(WIN95)" == "0" | |
14 | # With 3.50, Win95 will use your existing icons to show smaller ones. | |
15 | # With 4.0, you'll have to follow Win95 procedures for icons or you'll get the | |
16 | # default Windows icon. | |
17 | APPVER=3.50 | |
18 | WINVERSION=-DWINVER=0x0350 # Generic WIN32 | |
19 | !else | |
20 | APPVER=3.50 # 4.0 | |
21 | # This means 'enable Windows 95 features' (in wxWindows and in VC++ 4.0). | |
22 | WINVERSION=-DWINVER=0x0400 /D__WIN95__ | |
23 | !endif | |
24 | ||
25 | # On Alpha machines, change to CPU=ALPHA | |
26 | CPU=i386 | |
27 | ||
28 | # Suffixes | |
29 | OBJSUFF=obj | |
30 | SRCSUFF=cpp | |
31 | ||
32 | # If you set wxUSE_IOSTREAMH to 0, remove -Dtry=__try -Dexcept=__except -Dleave=__leave -Dfinally=__finally | |
0492c5a0 JS |
33 | #WINFLAGS=-c -W3 -Dtry=__try -Dexcept=__except -Dleave=__leave -Dfinally=__finally -DCRTAPI1=_cdecl -DCRTAPI2=_cdecl -nologo -D_X86_=1 -DWIN32 -D__WIN32__ $(WINVERSION) |
34 | WINFLAGS=-c -W3 -DCRTAPI1=_cdecl -DCRTAPI2=_cdecl -nologo -D_X86_=1 -DWIN32 -D__WIN32__ $(WINVERSION) | |
227869da JS |
35 | #WINLINKFLAGS=/NODEFAULTLIB /INCREMENTAL:NO /NOLOGO -align:0x1000 -machine:$(CPU) -subsystem:windows,$(APPVER) |
36 | WINLINKFLAGS=/INCREMENTAL:NO /NOLOGO -machine:$(CPU) -subsystem:windows,$(APPVER) | |
37 | #WINLIBS=kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib libc.lib oldnames.lib\ | |
38 | # comctl32.lib ctl3d32.lib odbc32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib # libci.lib # libci.lib required for VC++ 4.2 | |
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 JS |
41 | |
42 | # Change this to your WXWIN directory | |
43 | WXDIR=$(WXWIN) | |
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 | # | |
56 | # wxWin as DLL Defined - Defined wx200.lib | |
57 | # | |
58 | # App using wxWin DLL - Defined - wx200.lib | |
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 JS |
111 | # This sets 'D' to a suitable directory name |
112 | # for this kind of build, and WXLIBNAME to one of wx (static release), wx_d (static debug), | |
113 | # wx200 (DLL release), wx200_d (DLL debug) | |
114 | ||
115 | !if "$(WXMAKINGDLL)" == "1" || "$(WXUSINGDLL)" == "1" | |
116 | WXLIBNAME=wx200 | |
117 | !else | |
118 | WXLIBNAME=wx | |
119 | !endif | |
120 | ||
121 | !if "$(FINAL)" == "1" | |
122 | D=Release | |
123 | !else | |
124 | D=Debug | |
125 | WXLIBNAME=$(WXLIBNAME)_d | |
126 | !endif | |
127 | ||
128 | !if "$(WXMAKINGDLL)" == "1" || "$(WXUSINGDLL)" == "1" | |
129 | D=$(D)DLL | |
130 | !endif | |
131 | ||
132 | WXLIB=$(WXDIR)\lib\$(WXLIBNAME).lib | |
133 | ||
134 | INC=-I$(WXINC) -I$(WXDIR)/src/png -I$(WXDIR)/src/zlib $(EXTRAINC) | |
135 | LIBS = $(EXTRALIBS) $(WXLIB) $(WINLIBS) $(WXDIR)\lib\winpng.lib $(WXDIR)\lib\zlib.lib $(WXDIR)\lib\xpm.lib | |
136 | ||
227869da JS |
137 | MAKEPRECOMP=/YcWX/WXPREC.H |
138 | OPTIONS= | |
139 | ||
140 | !if "$(FINAL)" == "0" | |
141 | OPT = /Od /Gy | |
142 | # ***N.B.*** to save space/time, comment out /FR to avoid browse info (.sbr files) being generated | |
143 | DEBUG_FLAGS= /Zi /D__WXDEBUG__ # /DDEBUG=1 # /FR | |
144 | LINK_DEBUG_FLAGS=-debug:full -debugtype:cv # /PDB:NONE | |
145 | CRTFLAG=/MD | |
146 | !else | |
147 | # /O1 - smallest code | |
148 | # /O2 - fastest code | |
149 | OPT = /O1 # /O2 # /Od | |
150 | DEBUG_FLAGS= | |
151 | LINK_DEBUG_FLAGS=/RELEASE | |
152 | CRTFLAG=/MD | |
153 | !endif | |
154 | ||
155 | !if "$(DLL)" == "0" | |
156 | ||
157 | !if "$(NOPCH)" == "1" | |
158 | PCH= | |
159 | PRECOMP= | |
160 | MAKEPRECOMP= | |
161 | !else | |
ca5c8b2d JS |
162 | PCH=$(WXLIBNAME).pch |
163 | PRECOMP=/YuWX/WXPREC.H /Fp$(WXDIR)\src\msw\$(PCH) /Fd$(WXDIR)\lib\$(WXLIBNAME).pdb | |
227869da JS |
164 | MAKEPRECOMP=/YcWX/WXPREC.H |
165 | !endif | |
166 | ||
167 | CPPFLAGS=$(WINFLAGS) $(DEBUG_FLAGS) $(PRECOMP) $(EXTRAFLAGS) /D__WXMSW__ $(INC) $(OPT) $(EXTRADLLFLAGS) $(CRTFLAG) /D__WINDOWS__ /GX /DSTRICT $(OVERRIDEFLAGS) | |
168 | # If you don't include wxprec.h, use CPPFLAGS2 | |
169 | CPPFLAGS2=$(WINFLAGS) $(DEBUG_FLAGS) /D__WXMSW__ $(INC) $(EXTRAFLAGS) $(OPT) $(EXTRADLLFLAGS) $(CRTFLAG) /D__WINDOWS__ /GX /DSTRICT $(OVERRIDEFLAGS) | |
170 | LINKFLAGS=$(LINK_DEBUG_FLAGS) $(WINLINKFLAGS) -entry:WinMainCRTStartup | |
171 | DUMMY=dummy | |
172 | ||
173 | !else | |
174 | ||
175 | !if "$(WXMAKINGDLL)" == "1" | |
ca5c8b2d | 176 | PCH=$(WXLIBNAME).pch |
227869da JS |
177 | DUMMY=dummydll |
178 | !else | |
ca5c8b2d | 179 | PCH=$(WXLIBNAME).pch |
227869da JS |
180 | DUMMY=dummy |
181 | !endif | |
182 | ||
ca5c8b2d | 183 | PRECOMP=/YuWX/WXPREC.H /Fp$(WXDIR)\src\msw\$(PCH) /Fd$(WXDIR)\lib\$(WXLIBNAME).pdb |
227869da JS |
184 | CPPFLAGS=$(WINFLAGS) $(DEBUG_FLAGS) $(PRECOMP) $(EXTRAFLAGS) /D__WXMSW__ $(INC) $(OPT) /D_DLL $(CRTFLAG) $(EXTRADLLFLAGS) /D_WINDOWS /D__WINDOWS__ /D_WINDLL |
185 | CPPFLAGS2=$(WINFLAGS) $(DEBUG_FLAGS) /D__WXMSW__ $(INC) $(EXTRAFLAGS) $(OPT) /D_DLL $(CRTFLAG) $(EXTRADLLFLAGS) /D_WINDOWS /D__WINDOWS__ /D_WINDLL | |
186 | LINKFLAGS=$(LINK_DEBUG_FLAGS) -machine:i386 -subsystem:windows,$(APPVER) -dll # -entry:_DllMainCRTStartup$(DLLENTRY) | |
187 | !endif | |
188 | ||
ca5c8b2d | 189 | DUMMYOBJ=$(WXDIR)\src\msw\$D\$(DUMMY).obj |
227869da | 190 |