]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/ntwxwin.mak
added write_append mode to wxFile, implemented eof() for Unix
[wxWidgets.git] / src / ntwxwin.mak
... / ...
CommitLineData
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
32WINFLAGS=-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)
34WINLINKFLAGS=/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
37WINLIBS=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
41WXDIR=$(WXWIN)
42
43WXSRC=$(WXDIR)\src\msw
44WXINC=$(WXDIR)\include
45WXBASESRC=$(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"
80WXLIB=$(WXDIR)\lib\wx200.lib
81!else
82WXLIB=$(WXDIR)\lib\wx.lib
83!endif
84
85!if "$(WXUSINGDLL)" == "1"
86EXTRADLLFLAGS=/DWXUSINGDLL=1
87!endif
88
89!if "$(WXMAKINGDLL)" == "1"
90EXTRADLLFLAGS=/DWXMAKINGDLL=1
91!endif
92
93!if "$(WXMAKINGDLL)" == "0" && "$(DLL)" == "1"
94EXTRADLLFLAGS=
95!endif
96
97!if "$(NOMAIN)" == "1"
98EXTRADLLFLAGS=$(EXTRADLLFLAGS) /DNOMAIN
99!endif
100
101INC=-I$(WXINC) -I$(WXDIR)/src/png -I$(WXDIR)/src/zlib $(EXTRAINC)
102LIBS = $(EXTRALIBS) $(WXLIB) $(WINLIBS)
103
104!ifndef FINAL
105FINAL=0
106!endif
107
108!ifndef DLL
109DLL=0
110!endif
111
112!ifndef DEBUG
113DEBUG=0
114!endif
115
116# Set this to 1 if you don't want to use precompiled headers
117NOPCH=0
118
119MAKEPRECOMP=/YcWX/WXPREC.H
120OPTIONS=
121
122!if "$(FINAL)" == "0"
123OPT = /Od /Gy
124# ***N.B.*** to save space/time, comment out /FR to avoid browse info (.sbr files) being generated
125DEBUG_FLAGS= /Zi # /FR
126LINK_DEBUG_FLAGS=-debug:full -debugtype:cv # /PDB:NONE
127!else
128# /O1 - smallest code
129# /O2 - fastest code
130OPT = /O1 # /O2 # /Od
131DEBUG_FLAGS=
132LINK_DEBUG_FLAGS=/RELEASE
133!endif
134
135!if "$(DLL)" == "0"
136
137!if "$(NOPCH)" == "1"
138PCH=
139PRECOMP=
140MAKEPRECOMP=
141!else
142PCH=WX.PCH
143PRECOMP=/YuWX/WXPREC.H /Fp$(WXDIR)\src\msw\$(PCH) /Fd$(WXDIR)\src\msw\wx.pdb
144MAKEPRECOMP=/YcWX/WXPREC.H
145!endif
146
147CPPFLAGS=$(WINFLAGS) $(DEBUG_FLAGS) $(PRECOMP) $(EXTRAFLAGS) /D__WINDOWS__ /DDEBUG=$(DEBUG) $(INC) $(OPT) $(EXTRADLLFLAGS) /MDd /GX # /D_DEBUG
148# If you don't include wxprec.h, use CPPFLAGS2
149CPPFLAGS2=$(WINFLAGS) $(DEBUG_FLAGS) /D__WINDOWS__ /DDEBUG=$(DEBUG) $(INC) $(EXTRAFLAGS) $(OPT) $(EXTRADLLFLAGS) /MDd /GX # /D_DEBUG
150LINKFLAGS=$(LINK_DEBUG_FLAGS) $(WINLINKFLAGS) -entry:WinMainCRTStartup
151DUMMY=dummy
152
153!else
154
155!if "$(WXMAKINGDLL)" == "1"
156PCH=WXDLL.PCH
157DUMMY=dummydll
158!else
159PCH=WX.PCH
160DUMMY=dummy
161!endif
162
163PRECOMP=/YuWX/WXPREC.H /Fp$(WXDIR)\src\msw\$(PCH) /Fd$(WXDIR)\src\msw\wx.pdb
164CPPFLAGS=$(WINFLAGS) $(DEBUG_FLAGS) $(PRECOMP) $(EXTRAFLAGS) /D__WINDOWS__ /DDEBUG=$(DEBUG) $(INC) $(OPT) /D_DLL /MT $(EXTRADLLFLAGS) /D_WINDOWS /D_WINDLL
165CPPFLAGS2=$(WINFLAGS) $(DEBUG_FLAGS) /D__WINDOWS__ /DDEBUG=$(DEBUG) $(INC) $(EXTRAFLAGS) $(OPT) /D_DLL /MT $(EXTRADLLFLAGS) /D_WINDOWS /D_WINDLL
166LINKFLAGS=$(LINK_DEBUG_FLAGS) -machine:i386 -subsystem:windows,$(APPVER) -dll # -entry:_DllMainCRTStartup$(DLLENTRY)
167!endif
168
169DUMMYOBJ=$(WXDIR)\src\msw\$(DUMMY).obj
170
171