]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
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 | WINFLAGS=-c -W3 -Dtry=__try -Dexcept=__except -Dleave=__leave -Dfinally=__finally -DCRTAPI1=_cdecl -DCRTAPI2=_cdecl -nologo -D_X86_=1 -DWIN32 -D__WIN32__ $(WINVERSION) | |
33 | #WINLINKFLAGS=/NODEFAULTLIB /INCREMENTAL:NO /NOLOGO -align:0x1000 -machine:$(CPU) -subsystem:windows,$(APPVER) | |
34 | WINLINKFLAGS=/INCREMENTAL:NO /NOLOGO -align:0x1000 -machine:$(CPU) -subsystem:windows,$(APPVER) | |
35 | #WINLIBS=kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib libc.lib oldnames.lib\ | |
36 | # comctl32.lib ctl3d32.lib odbc32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib # libci.lib # libci.lib required for VC++ 4.2 | |
37 | WINLIBS=kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib oldnames.lib\ | |
38 | comctl32.lib ctl3d32.lib odbc32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib # libci.lib # libci.lib required for VC++ 4.2 | |
39 | ||
40 | # Change this to your WXWIN directory | |
41 | WXDIR=$(WXWIN) | |
42 | ||
43 | WXSRC=$(WXDIR)\src\msw | |
44 | WXINC=$(WXDIR)\include | |
45 | WXBASESRC=$(WXDIR)\src\common | |
46 | ||
47 | ##################################################################### | |
48 | # These are the possible DLL/non-DLL usages: | |
49 | # | |
50 | # Type _DLL/_WINDLL WXUSINGDLL WXMAKINGDLL Library | |
51 | #-------------------------------------------------------------------- | |
52 | # Normal application - - - wx.lib | |
53 | # | |
54 | # wxWin as DLL Defined - Defined wx200.lib | |
55 | # | |
56 | # App using wxWin DLL - Defined - wx200.lib | |
57 | # | |
58 | # App built as one DLL Defined - - wx.lib | |
59 | # | |
60 | ###################################################################### | |
61 | # | |
62 | # Compiling your app: | |
63 | #-------------------- | |
64 | # when compiling an app to use the DLL version of wxWindows | |
65 | # (but not to be a DLL itself), set WXUSINGDLL to 1 in your | |
66 | # makefile just before including ntwxwin.mak. | |
67 | # To compile wxWin _and_ app itself as a DLL, set DLL to 1 | |
68 | # in ntwxwin.mak, and do not set WXUSINGDLL. | |
69 | # | |
70 | # Compiling wxWindows: | |
71 | #--------------------- | |
72 | # Use the dll target to compile wxWindows as DLL; then make 'pch' | |
73 | # to generate a precompiled header for your apps to use. BUG: must compile without | |
74 | # wxExpr (USE_WX_RESOURCES = 0) for this to link properly. Don't know why yet. | |
75 | # Use the dllapp target to compile wxWindows for making a DLL app (not implemented yet) | |
76 | ||
77 | #DLL=0 | |
78 | ||
79 | !if "$(WXUSINGDLL)" == "1" || "$(WXMAKINGDLL)" == "1" | |
80 | WXLIB=$(WXDIR)\lib\wx200.lib | |
81 | !else | |
82 | WXLIB=$(WXDIR)\lib\wx.lib | |
83 | !endif | |
84 | ||
85 | !if "$(WXUSINGDLL)" == "1" | |
86 | EXTRADLLFLAGS=/DWXUSINGDLL=1 | |
87 | !endif | |
88 | ||
89 | !if "$(WXMAKINGDLL)" == "1" | |
90 | EXTRADLLFLAGS=/DWXMAKINGDLL=1 | |
91 | !endif | |
92 | ||
93 | !if "$(WXMAKINGDLL)" == "0" && "$(DLL)" == "1" | |
94 | EXTRADLLFLAGS= | |
95 | !endif | |
96 | ||
97 | !if "$(NOMAIN)" == "1" | |
98 | EXTRADLLFLAGS=$(EXTRADLLFLAGS) /DNOMAIN | |
99 | !endif | |
100 | ||
10b959e3 | 101 | INC=-I$(WXINC) -I$(WXDIR)/src/png -I$(WXDIR)/src/zlib $(EXTRAINC) |
2bda0e17 KB |
102 | LIBS = $(EXTRALIBS) $(WXLIB) $(WINLIBS) |
103 | ||
104 | !ifndef FINAL | |
105 | FINAL=0 | |
40e1a9c0 | 106 | DEBUG=1 |
2bda0e17 KB |
107 | !endif |
108 | ||
109 | !ifndef DLL | |
110 | DLL=0 | |
111 | !endif | |
112 | ||
2bda0e17 | 113 | # Set this to 1 if you don't want to use precompiled headers |
b6a69abc | 114 | !ifndef NOPCH |
2bda0e17 | 115 | NOPCH=0 |
b6a69abc | 116 | !endif |
2bda0e17 KB |
117 | |
118 | MAKEPRECOMP=/YcWX/WXPREC.H | |
119 | OPTIONS= | |
120 | ||
121 | !if "$(FINAL)" == "0" | |
122 | OPT = /Od /Gy | |
123 | # ***N.B.*** to save space/time, comment out /FR to avoid browse info (.sbr files) being generated | |
124 | DEBUG_FLAGS= /Zi # /FR | |
125 | LINK_DEBUG_FLAGS=-debug:full -debugtype:cv # /PDB:NONE | |
b6a69abc | 126 | CRTFLAG=/MD |
2bda0e17 KB |
127 | !else |
128 | # /O1 - smallest code | |
129 | # /O2 - fastest code | |
130 | OPT = /O1 # /O2 # /Od | |
131 | DEBUG_FLAGS= | |
132 | LINK_DEBUG_FLAGS=/RELEASE | |
b6a69abc | 133 | CRTFLAG=/MD |
2bda0e17 KB |
134 | !endif |
135 | ||
136 | !if "$(DLL)" == "0" | |
137 | ||
138 | !if "$(NOPCH)" == "1" | |
139 | PCH= | |
140 | PRECOMP= | |
141 | MAKEPRECOMP= | |
142 | !else | |
143 | PCH=WX.PCH | |
7798a18e | 144 | PRECOMP=/YuWX/WXPREC.H /Fp$(WXDIR)\src\msw\$(PCH) /Fd$(WXDIR)\lib\wx.pdb |
2bda0e17 KB |
145 | MAKEPRECOMP=/YcWX/WXPREC.H |
146 | !endif | |
147 | ||
34138703 | 148 | CPPFLAGS=$(WINFLAGS) $(DEBUG_FLAGS) $(PRECOMP) $(EXTRAFLAGS) /D__WXMSW__ /DDEBUG=1 $(INC) $(OPT) $(EXTRADLLFLAGS) $(CRTFLAG) /D__WINDOWS__ /GX /D__WXDEBUG__ /DWXDEBUG=1 /DSTRICT |
2bda0e17 | 149 | # If you don't include wxprec.h, use CPPFLAGS2 |
34138703 | 150 | CPPFLAGS2=$(WINFLAGS) $(DEBUG_FLAGS) /D__WXMSW__ /DDEBUG=1 $(INC) $(EXTRAFLAGS) $(OPT) $(EXTRADLLFLAGS) $(CRTFLAG) /D__WINDOWS__ /GX /D__WXDEBUG__ /DWXDEBUG=1 /DSTRICT |
2bda0e17 KB |
151 | LINKFLAGS=$(LINK_DEBUG_FLAGS) $(WINLINKFLAGS) -entry:WinMainCRTStartup |
152 | DUMMY=dummy | |
153 | ||
154 | !else | |
155 | ||
156 | !if "$(WXMAKINGDLL)" == "1" | |
157 | PCH=WXDLL.PCH | |
158 | DUMMY=dummydll | |
159 | !else | |
160 | PCH=WX.PCH | |
161 | DUMMY=dummy | |
162 | !endif | |
163 | ||
7798a18e | 164 | PRECOMP=/YuWX/WXPREC.H /Fp$(WXDIR)\src\msw\$(PCH) /Fd$(WXDIR)\lib\wx.pdb |
34138703 JS |
165 | CPPFLAGS=$(WINFLAGS) $(DEBUG_FLAGS) $(PRECOMP) $(EXTRAFLAGS) /D__WXMSW__ $(INC) $(OPT) /D_DLL $(CRTFLAG) $(EXTRADLLFLAGS) /D_WINDOWS /D__WINDOWS__ /D_WINDLL |
166 | CPPFLAGS2=$(WINFLAGS) $(DEBUG_FLAGS) /D__WXMSW__ $(INC) $(EXTRAFLAGS) $(OPT) /D_DLL $(CRTFLAG) $(EXTRADLLFLAGS) /D_WINDOWS /D__WINDOWS__ /D_WINDLL | |
2bda0e17 KB |
167 | LINKFLAGS=$(LINK_DEBUG_FLAGS) -machine:i386 -subsystem:windows,$(APPVER) -dll # -entry:_DllMainCRTStartup$(DLLENTRY) |
168 | !endif | |
169 | ||
170 | DUMMYOBJ=$(WXDIR)\src\msw\$(DUMMY).obj | |
171 | ||
172 | ||
b6a69abc RD |
173 | |
174 | ||
175 |