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