2 ## This file gives the details of what is needed to build this extension
3 ## module so the Makefile can be created.
5 ## If you have not done "make install" for wxWindows then see Setup.in.linux
6 ## for a more verbose version of this file.
14 WX_CONFIG_CFLAGS=`wx-config --cflags`
15 WX_CONFIG_LIBS=`wx-config --libs`
19 ## Depending on how your Python was built, you may have to set this
20 ## value to use the C++ driver to link with instead of the default
21 ## C driver. For example:
22 MY_LDSHARED=$(CCC) -shared
24 ## Same as above, but for statically linking Python and wxPython together,
25 ## in other words, if you comment out the *shared* above. If this is the
26 ## case then you should ensure that the main() function is Python's, not
27 ## wxWindows'. You can rebuild $(WXWIN)/src/gtk/app.cpp with NOMAIN defined
32 ## Pick one of these, or set your own. This is where the wxPython module
33 ## should be installed. It should be a subdirectory named wxPython.
35 TARGETDIR=$(BINLIBDEST)/site-packages/wxPython
38 ##----------------------------------------------------------------------
39 ## To build wxPython as separate extension modules, uncomment and use
40 ## these variable definitions and Setup rules.
43 WXPYLIBDIR = /usr/local/lib
44 HELPERLIB = lib$(WXPYLIB)$(SO)
45 C_DEFINES = -DSWIG_GLOBAL -DWXP_USE_THREAD -DSEPARATE
46 C_FLAGS = -I. $(WX_CONFIG_CFLAGS)
47 C_LIBS = -L. -l$(WXPYLIB) $(WX_CONFIG_LIBS)
49 wxc wx.cpp windows.cpp events.cpp misc.cpp misc2.cpp gdi.cpp \
50 mdi.cpp controls.cpp controls2.cpp windows2.cpp cmndlgs.cpp \
51 frames.cpp stattool.cpp windows3.cpp image.cpp printfw.cpp \
52 $(C_DEFINES) $(C_FLAGS) -Xlinker $(C_LIBS)
55 $(C_DEFINES) $(C_FLAGS) -Xlinker $(C_LIBS)
57 glcanvasc _glcanvas.cpp glcanvas.cpp -DWITH_GLCANVAS -lMesaGL -lMesaGLU \
58 $(C_DEFINES) $(C_FLAGS) -Xlinker $(C_LIBS)
61 ##----------------------------------------------------------------------
62 ## To build wxPython as one big extension module, comment out the above
63 ## rules and definitions, and then uncomment this single Setup rule.
65 #wxc helpers.cpp libpy.c libptr.c \
66 # wx.cpp windows.cpp events.cpp misc.cpp misc2.cpp gdi.cpp \
67 # mdi.cpp controls.cpp controls2.cpp windows2.cpp cmndlgs.cpp \
68 # frames.cpp stattool.cpp windows3.cpp image.cpp printfw.cpp \
70 # ## comment out the next line to disable wxGLCanvas
71 # _glcanvas.cpp glcanvas.cpp -DWITH_GLCANVAS -lGL -lGLU \
72 # -I. $(WX_CONFIG_CFLAGS) -I/usr/local/lib/glib/include \
73 # -DSWIG_GLOBAL -DWXP_USE_THREAD $(SEPARATE) -Xlinker $(WX_CONFIG_LIBS)