1 #----------------------------------------------------------------------------
3 # Purpose: Win32, VC++ 5 makefile for wxPython
9 # Copyright: (c) 1998 by Total Control Software
10 # Licence: wxWindows license
11 #----------------------------------------------------------------------------
13 # Set WXDIR to the root wxWindows directory for your system
16 # Set this to the root of the Python installation
17 PYTHONDIR=e:\Tools\Python15
19 # Set this to 1 for a non-debug, optimised compile
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
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
34 #----------------------------------------------------------------------
38 THISDIR=$(WXDIR)\utils\wxPython
40 EXTRALIBS=$(PYTHONDIR)\libs\python15.lib
41 EXTRAINC=-I$(PYTHONDIR)\include -I.
42 EXTRAFLAGS=/Fpwxp.pch /YXhelpers.h -DSWIG_GLOBAL -DHAVE_CONFIG_H
46 SWIGFLAGS=-c++ -shadow -python -dnone -D__WXMSW__
50 !include $(WXDIR)\src\ntwxwin.mak
52 #----------------------------------------------------------------------
56 OBJECTS = wx.obj helpers.obj windows.obj events.obj \
57 misc.obj gdi.obj mdi.obj controls.obj \
58 controls2.obj windows2.obj cmndlgs.obj stattool.obj \
60 !if "$(SEPARATE)" == "0"
66 target2=$(TARGETDIR)\$(TARGET2).pyd
69 PYMODULES = $(TARGETDIR)\wx.py $(TARGETDIR)\events.py \
70 $(TARGETDIR)\windows.py $(TARGETDIR)\misc.py \
71 $(TARGETDIR)\gdi.py $(TARGETDIR)\mdi.py \
72 $(TARGETDIR)\controls.py $(TARGETDIR)\controls2.py \
73 $(TARGETDIR)\windows2.py $(TARGETDIR)\cmndlgs.py \
74 $(TARGETDIR)\stattool.py $(TARGETDIR)\frames.py \
75 $(TARGETDIR)\utils.py $(TARGETDIR)\__init__.py
78 #----------------------------------------------------------------------
81 DEBUGLFLAGS = /DEBUG /INCREMENTAL:YES
83 DEBUGLFLAGS = /INCREMENTAL:NO
86 LFLAGS= $(DEBUGLFLAGS) /DLL /def:$(TARGET).def /subsystem:windows,3.50 \
87 /machine:I386 /implib:./$(TARGET).lib /nologo
89 LFLAGS2=$(DEBUGLFLAGS) /DLL /def:$(TARGET2).def /subsystem:windows,3.50 \
90 /machine:I386 /implib:./$(TARGET2).lib /nologo
92 #----------------------------------------------------------------------
94 default: $(TARGETDIR)\$(TARGET).pyd $(target2) pycfiles
96 all: wx $(TARGET) $(TARGET2)
100 nmake -f makefile.nt FINAL=$(FINAL)
105 nmake -f makefile.nt clean
109 pycfiles : $(PYMODULES)
110 !if "$(COMPILEPY)" == "1"
111 $(PYTHONDIR)\python $(PYTHONDIR)\Lib\compileall.py -l $(TARGETDIR)
112 $(PYTHONDIR)\python -O $(PYTHONDIR)\Lib\compileall.py -l $(TARGETDIR)
115 #----------------------------------------------------------------------
117 $(TARGETDIR)\$(TARGET).pyd : $(DUMMYOBJ) $(WXLIB) $(OBJECTS) $(TARGET).res
121 $(DUMMYOBJ) $(OBJECTS) $(TARGET).res
125 $(TARGETDIR)\$(TARGET2).pyd : $(DUMMYOBJ) $(WXLIB) $(OBJECTS2)
129 $(DUMMYOBJ) $(OBJECTS2)
134 $(TARGET).res : $(TARGET).rc $(WXDIR)\include\wx\msw\wx.rc
135 $(rc) -r /i$(WXDIR)\include -fo$@ $(TARGET).rc
139 # implicit rule for compiling .cpp files
142 $(CPPFLAGS) /c /Tp $<
145 {$(GENCODEDIR)}.cpp{}.obj:
147 $(CPPFLAGS) /c /Tp $<
161 -erase $(TARGETDIR)\$(TARGET).*
162 !if "$(SEPARATE)" != "0"
163 -erase $(TARGET2).exp
164 -erase $(TARGET2).lib
165 -erase $(TARGETDIR)\$(TARGET2).*
167 -erase $(TARGETDIR)\$(TARGET).pyd
168 -erase $(TARGETDIR)\*.py
169 -erase $(TARGETDIR)\*.pyc
170 -erase $(TARGETDIR)\*.pyo
174 #------------------------------------------------------------------------
178 # Implicit rules to run SWIG
179 {}.i{$(GENCODEDIR)}.cpp:
180 swig $(SWIGFLAGS) -c -o $@ $<
182 {}.i{$(GENCODEDIR)}.py:
183 swig $(SWIGFLAGS) -c -o $@ $<
186 {$(GENCODEDIR)}.py{$(TARGETDIR)}.py:
189 {}.py{$(TARGETDIR)}.py:
192 #{}.py{$(TARGETDIR)}.$(PYEXT):
193 # $(PYTHON) -c "import py_compile; py_compile.compile('$<', '$@')"
198 # This one must leave out the -c flag so we define the whole rule
199 $(GENCODEDIR)\wx.cpp $(GENCODEDIR)\wx.py : wx.i my_typemaps.i _defs.i _extras.py
200 swig $(SWIGFLAGS) -o $(GENCODEDIR)/wx.cpp wx.i
203 # Define some dependencies. These MUST use forward slashes so SWIG
204 # will write the shadow file to the right directory.
205 $(GENCODEDIR)/windows.cpp $(GENCODEDIR)/windows.py : windows.i my_typemaps.i _defs.i
206 $(GENCODEDIR)/windows2.cpp $(GENCODEDIR)/windows2.py : windows2.i my_typemaps.i _defs.i
207 $(GENCODEDIR)/events.cpp $(GENCODEDIR)/events.py : events.i my_typemaps.i _defs.i
208 $(GENCODEDIR)/misc.cpp $(GENCODEDIR)/misc.py : misc.i my_typemaps.i _defs.i
209 $(GENCODEDIR)/gdi.cpp $(GENCODEDIR)/gdi.py : gdi.i my_typemaps.i _defs.i
210 $(GENCODEDIR)/mdi.cpp $(GENCODEDIR)/mdi.py : mdi.i my_typemaps.i _defs.i
211 $(GENCODEDIR)/controls.cpp $(GENCODEDIR)/controls.py : controls.i my_typemaps.i _defs.i
212 $(GENCODEDIR)/controls2.cpp $(GENCODEDIR)/controls2.py : controls2.i my_typemaps.i _defs.i
213 $(GENCODEDIR)/cmndlgs.cpp $(GENCODEDIR)/cmndlgs.py : cmndlgs.i my_typemaps.i _defs.i
214 $(GENCODEDIR)/stattool.cpp $(GENCODEDIR)/stattool.py : stattool.i my_typemaps.i _defs.i
215 $(GENCODEDIR)/frames.cpp $(GENCODEDIR)/frames.py : frames.i my_typemaps.i _defs.i
217 !if "$(SEPARATE)" == "1"
218 $(GENCODEDIR)\utils.cpp $(GENCODEDIR)\utils.py : utils.i my_typemaps.i
219 swig $(SWIGFLAGS) -o $(GENCODEDIR)/utils.cpp utils.i
221 $(GENCODEDIR)/utils.cpp $(GENCODEDIR)/utils.py : utils.i my_typemaps.i _defs.i
225 $(TARGETDIR)\wx.py : $(GENCODEDIR)\wx.py
226 $(TARGETDIR)\windows.py : $(GENCODEDIR)\windows.py
227 $(TARGETDIR)\windows2.py : $(GENCODEDIR)\windows2.py
228 $(TARGETDIR)\events.py : $(GENCODEDIR)\events.py
229 $(TARGETDIR)\misc.py : $(GENCODEDIR)\misc.py
230 $(TARGETDIR)\gdi.py : $(GENCODEDIR)\gdi.py
231 $(TARGETDIR)\mdi.py : $(GENCODEDIR)\mdi.py
232 $(TARGETDIR)\controls.py : $(GENCODEDIR)\controls.py
233 $(TARGETDIR)\controls2.py : $(GENCODEDIR)\controls2.py
234 $(TARGETDIR)\cmndlgs.py : $(GENCODEDIR)\cmndlgs.py
235 $(TARGETDIR)\frames.py : $(GENCODEDIR)\frames.py
236 $(TARGETDIR)\stattool.py : $(GENCODEDIR)\stattool.py
237 $(TARGETDIR)\utils.py : $(GENCODEDIR)\utils.py
238 $(TARGETDIR)\__init__.py : __init__.py
241 #------------------------------------------------------------------------
244 # Revision 1.8 1998/12/21 19:58:06 RD
245 # Now compiles with /GX- on MSW.
247 # Revision 1.7 1998/12/15 20:41:20 RD
248 # Changed the import semantics from "from wxPython import *" to "from
249 # wxPython.wx import *" This is for people who are worried about
250 # namespace pollution, they can use "from wxPython import wx" and then
251 # prefix all the wxPython identifiers with "wx."
253 # Added wxTaskbarIcon for wxMSW.
255 # Made the events work for wxGrid.
259 # Added wxMiniFrame for wxGTK, (untested.)
261 # Changed many of the args and return values that were pointers to gdi
262 # objects to references to reflect changes in the wxWindows API.
264 # Other assorted fixes and additions.
266 # Revision 1.6 1998/10/02 06:40:41 RD
268 # Version 0.4 of wxPython for MSW.
270 # Revision 1.5 1998/08/19 00:38:23 RD
274 # Revision 1.4 1998/08/18 21:55:10 RD
276 # New build directory structure
278 # Revision 1.3 1998/08/15 07:36:37 RD
279 # - Moved the header in the .i files out of the code that gets put into
280 # the .cpp files. It caused CVS conflicts because of the RCS ID being
281 # different each time.
283 # - A few minor fixes.
285 # Revision 1.2 1998/08/14 03:34:23 RD
286 # made pre-compiling the python files optional
288 # Revision 1.1 1998/08/09 08:25:51 RD