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