]> git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/src/makefile.nt
Added $(OVERRIDEFLAGS) to the end of the flags so default flags can be overridden.
[wxWidgets.git] / utils / wxPython / src / makefile.nt
1 #----------------------------------------------------------------------------
2 # Name: makefile.nt
3 # Purpose: Win32, VC++ 5 makefile for wxPython
4 #
5 # Author: Robin Dunn
6 #
7 # Created: 3/27/97
8 # RCS-ID: $Id$
9 # Copyright: (c) 1998 by Total Control Software
10 # Licence: wxWindows license
11 #----------------------------------------------------------------------------
12
13 # Set WXDIR to the root wxWindows directory for your system
14 WXDIR = $(WXWIN)
15
16 # Set this to the root of the Python installation
17 PYTHONDIR=e:\Tools\Python15
18
19 # Set this to 1 for a non-debug, optimised compile
20 FINAL=0
21
22 # Set this to where you want the stuff installed at. It should
23 # be a directory contained in a PYTHONPATH directory, and should be
24 # named wxPython
25 TARGETDIR=..
26
27 # Set this to 1 for make to pre-compile the Python modules, 0 to
28 # just copy the sources and let Python compile them at the first
29 # runtime.
30 COMPILEPY=0
31
32 SEPARATE=0
33
34 #----------------------------------------------------------------------
35
36 WXUSINGDLL=0
37 NOPCH=1
38 THISDIR=$(WXDIR)\utils\wxPython
39
40 EXTRALIBS=$(PYTHONDIR)\libs\python15.lib
41 EXTRAINC=-I$(PYTHONDIR)\include -I.
42 EXTRAFLAGS=/Fpwxp.pch /YXhelpers.h -DSWIG_GLOBAL -DHAVE_CONFIG_H
43
44 SWIGFLAGS=-c++ -shadow -python -dnone -D__WXMSW__
45 GENCODEDIR=msw
46
47
48 !include $(WXDIR)\src\ntwxwin.mak
49
50 #----------------------------------------------------------------------
51
52 TARGET = wxc
53
54 OBJECTS = wx.obj helpers.obj windows.obj events.obj \
55 misc.obj gdi.obj mdi.obj controls.obj \
56 controls2.obj windows2.obj cmndlgs.obj stattool.obj \
57 frames.obj \
58 !if "$(SEPARATE)" == "0"
59 utils.obj
60 !else
61
62 TARGET2 = utilsc
63 OBJECTS2 = utils.obj
64 target2=$(TARGETDIR)\$(TARGET2).pyd
65 !endif
66
67 PYMODULES = $(TARGETDIR)\wx.py $(TARGETDIR)\events.py \
68 $(TARGETDIR)\windows.py $(TARGETDIR)\misc.py \
69 $(TARGETDIR)\gdi.py $(TARGETDIR)\mdi.py \
70 $(TARGETDIR)\controls.py $(TARGETDIR)\controls2.py \
71 $(TARGETDIR)\windows2.py $(TARGETDIR)\cmndlgs.py \
72 $(TARGETDIR)\stattool.py $(TARGETDIR)\frames.py \
73 $(TARGETDIR)\utils.py $(TARGETDIR)\__init__.py
74
75
76 #----------------------------------------------------------------------
77
78 !if "$(FINAL)" == "0"
79 DEBUGLFLAGS = /DEBUG /INCREMENTAL:YES
80 !else
81 DEBUGLFLAGS = /INCREMENTAL:NO
82 !endif
83
84 LFLAGS= $(DEBUGLFLAGS) /DLL /def:$(TARGET).def /subsystem:windows,3.50 \
85 /machine:I386 /implib:./$(TARGET).lib /nologo
86
87 LFLAGS2=$(DEBUGLFLAGS) /DLL /def:$(TARGET2).def /subsystem:windows,3.50 \
88 /machine:I386 /implib:./$(TARGET2).lib /nologo
89
90 #----------------------------------------------------------------------
91
92 default: $(TARGETDIR)\$(TARGET).pyd $(target2) pycfiles
93
94 all: wx $(TARGET) $(TARGET2)
95
96 wx:
97 cd $(WXDIR)\src\msw
98 nmake -f makefile.nt FINAL=$(FINAL)
99 cd $(THISDIR)
100
101 wxclean:
102 cd $(WXDIR)\src\msw
103 nmake -f makefile.nt clean
104 cd $(THISDIR)
105
106
107 pycfiles : $(PYMODULES)
108 !if "$(COMPILEPY)" == "1"
109 $(PYTHONDIR)\python $(PYTHONDIR)\Lib\compileall.py -l $(TARGETDIR)
110 $(PYTHONDIR)\python -O $(PYTHONDIR)\Lib\compileall.py -l $(TARGETDIR)
111 !endif
112
113 #----------------------------------------------------------------------
114
115 $(TARGETDIR)\$(TARGET).pyd : $(DUMMYOBJ) $(WXLIB) $(OBJECTS) $(TARGET).res
116 $(link) @<<
117 /out:$@ /dll
118 $(LFLAGS)
119 $(DUMMYOBJ) $(OBJECTS) $(TARGET).res
120 $(LIBS)
121 <<
122
123 $(TARGETDIR)\$(TARGET2).pyd : $(DUMMYOBJ) $(WXLIB) $(OBJECTS2)
124 $(link) @<<
125 /out:$@ /dll
126 $(LFLAGS2)
127 $(DUMMYOBJ) $(OBJECTS2)
128 $(LIBS)
129 <<
130
131
132 $(TARGET).res : $(TARGET).rc $(WXDIR)\include\wx\msw\wx.rc
133 $(rc) -r /i$(WXDIR)\include -fo$@ $(TARGET).rc
134
135
136
137 # implicit rule for compiling .cpp files
138 {}.cpp{}.obj:
139 $(cc) @<<
140 $(CPPFLAGS) /c /Tp $<
141 <<
142
143 {$(GENCODEDIR)}.cpp{}.obj:
144 $(cc) @<<
145 $(CPPFLAGS) /c /Tp $<
146 <<
147
148
149 clean:
150 -erase *.obj
151 -erase *.exe
152 -erase *.res
153 -erase *.map
154 -erase *.sbr
155 -erase *.pdb
156 -erase *.pch
157 -erase $(TARGET).exp
158 -erase $(TARGET).lib
159 -erase $(TARGETDIR)\$(TARGET).*
160 !if "$(SEPARATE)" != "0"
161 -erase $(TARGET2).exp
162 -erase $(TARGET2).lib
163 -erase $(TARGETDIR)\$(TARGET2).*
164 !endif
165 -erase $(TARGETDIR)\$(TARGET).pyd
166 -erase $(TARGETDIR)\*.py
167 -erase $(TARGETDIR)\*.pyc
168 -erase $(TARGETDIR)\*.pyo
169
170
171
172 #------------------------------------------------------------------------
173
174 .SUFFIXES : .i .py
175
176 # Implicit rules to run SWIG
177 {}.i{$(GENCODEDIR)}.cpp:
178 swig $(SWIGFLAGS) -c -o $@ $<
179
180 {}.i{$(GENCODEDIR)}.py:
181 swig $(SWIGFLAGS) -c -o $@ $<
182
183
184 {$(GENCODEDIR)}.py{$(TARGETDIR)}.py:
185 copy $< $@
186
187 {}.py{$(TARGETDIR)}.py:
188 copy $< $@
189
190 #{}.py{$(TARGETDIR)}.$(PYEXT):
191 # $(PYTHON) -c "import py_compile; py_compile.compile('$<', '$@')"
192
193
194
195
196 # This one must leave out the -c flag so we define the whole rule
197 $(GENCODEDIR)\wx.cpp $(GENCODEDIR)\wx.py : wx.i my_typemaps.i _defs.i _extras.py
198 swig $(SWIGFLAGS) -o $(GENCODEDIR)/wx.cpp wx.i
199
200
201 # Define some dependencies. These MUST use forward slashes so SWIG
202 # will write the shadow file to the right directory.
203 $(GENCODEDIR)/windows.cpp $(GENCODEDIR)/windows.py : windows.i my_typemaps.i _defs.i
204 $(GENCODEDIR)/windows2.cpp $(GENCODEDIR)/windows2.py : windows2.i my_typemaps.i _defs.i
205 $(GENCODEDIR)/events.cpp $(GENCODEDIR)/events.py : events.i my_typemaps.i _defs.i
206 $(GENCODEDIR)/misc.cpp $(GENCODEDIR)/misc.py : misc.i my_typemaps.i _defs.i
207 $(GENCODEDIR)/gdi.cpp $(GENCODEDIR)/gdi.py : gdi.i my_typemaps.i _defs.i
208 $(GENCODEDIR)/mdi.cpp $(GENCODEDIR)/mdi.py : mdi.i my_typemaps.i _defs.i
209 $(GENCODEDIR)/controls.cpp $(GENCODEDIR)/controls.py : controls.i my_typemaps.i _defs.i
210 $(GENCODEDIR)/controls2.cpp $(GENCODEDIR)/controls2.py : controls2.i my_typemaps.i _defs.i
211 $(GENCODEDIR)/cmndlgs.cpp $(GENCODEDIR)/cmndlgs.py : cmndlgs.i my_typemaps.i _defs.i
212 $(GENCODEDIR)/stattool.cpp $(GENCODEDIR)/stattool.py : stattool.i my_typemaps.i _defs.i
213 $(GENCODEDIR)/frames.cpp $(GENCODEDIR)/frames.py : frames.i my_typemaps.i _defs.i
214
215 !if "$(SEPARATE)" == "1"
216 $(GENCODEDIR)\utils.cpp $(GENCODEDIR)\utils.py : utils.i my_typemaps.i
217 swig $(SWIGFLAGS) -o $(GENCODEDIR)/utils.cpp utils.i
218 !else
219 $(GENCODEDIR)/utils.cpp $(GENCODEDIR)/utils.py : utils.i my_typemaps.i _defs.i
220 !endif
221
222
223 $(TARGETDIR)\wx.py : $(GENCODEDIR)\wx.py
224 $(TARGETDIR)\windows.py : $(GENCODEDIR)\windows.py
225 $(TARGETDIR)\windows2.py : $(GENCODEDIR)\windows2.py
226 $(TARGETDIR)\events.py : $(GENCODEDIR)\events.py
227 $(TARGETDIR)\misc.py : $(GENCODEDIR)\misc.py
228 $(TARGETDIR)\gdi.py : $(GENCODEDIR)\gdi.py
229 $(TARGETDIR)\mdi.py : $(GENCODEDIR)\mdi.py
230 $(TARGETDIR)\controls.py : $(GENCODEDIR)\controls.py
231 $(TARGETDIR)\controls2.py : $(GENCODEDIR)\controls2.py
232 $(TARGETDIR)\cmndlgs.py : $(GENCODEDIR)\cmndlgs.py
233 $(TARGETDIR)\frames.py : $(GENCODEDIR)\frames.py
234 $(TARGETDIR)\stattool.py : $(GENCODEDIR)\stattool.py
235 $(TARGETDIR)\utils.py : $(GENCODEDIR)\utils.py
236 $(TARGETDIR)\__init__.py : __init__.py
237
238
239 #------------------------------------------------------------------------
240 #
241 # $Log$
242 # Revision 1.7 1998/12/15 20:41:20 RD
243 # Changed the import semantics from "from wxPython import *" to "from
244 # wxPython.wx import *" This is for people who are worried about
245 # namespace pollution, they can use "from wxPython import wx" and then
246 # prefix all the wxPython identifiers with "wx."
247 #
248 # Added wxTaskbarIcon for wxMSW.
249 #
250 # Made the events work for wxGrid.
251 #
252 # Added wxConfig.
253 #
254 # Added wxMiniFrame for wxGTK, (untested.)
255 #
256 # Changed many of the args and return values that were pointers to gdi
257 # objects to references to reflect changes in the wxWindows API.
258 #
259 # Other assorted fixes and additions.
260 #
261 # Revision 1.6 1998/10/02 06:40:41 RD
262 #
263 # Version 0.4 of wxPython for MSW.
264 #
265 # Revision 1.5 1998/08/19 00:38:23 RD
266 #
267 # A few tweaks
268 #
269 # Revision 1.4 1998/08/18 21:55:10 RD
270 #
271 # New build directory structure
272 #
273 # Revision 1.3 1998/08/15 07:36:37 RD
274 # - Moved the header in the .i files out of the code that gets put into
275 # the .cpp files. It caused CVS conflicts because of the RCS ID being
276 # different each time.
277 #
278 # - A few minor fixes.
279 #
280 # Revision 1.2 1998/08/14 03:34:23 RD
281 # made pre-compiling the python files optional
282 #
283 # Revision 1.1 1998/08/09 08:25:51 RD
284 # Initial version
285 #