1999-02-11 16:27:56 +00:00
|
|
|
# This file gives the details of what is needed to build this extension
|
|
|
|
# module so the Makefile can be created.
|
|
|
|
|
|
|
|
###
|
|
|
|
### This file should be created by configure. Currently it is tweaked by hand.
|
|
|
|
###
|
|
|
|
|
|
|
|
*shared*
|
|
|
|
|
|
|
|
CCC=g++
|
|
|
|
WXWIN=~/wxWindows
|
|
|
|
GENCODEDIR=gtk
|
|
|
|
srcdir=$(GENCODEDIR)
|
1999-05-01 21:21:35 +00:00
|
|
|
WX_CONFIG_CFLAGS=`wx-config --cflags` `gtk-config --cflags`
|
1999-02-11 16:27:56 +00:00
|
|
|
WX_CONFIG_LIBS=`wx-config --libs`
|
|
|
|
|
|
|
|
# Depending on how your Python was built, you may have to set this
|
|
|
|
# value to use the C++ driver to link with instead of the default
|
|
|
|
# C driver. For example:
|
|
|
|
MY_LDSHARED=$(CCC) -shared $(WX_CONFIG_LIBS)
|
|
|
|
|
|
|
|
# Same as above, but for statically linking Python and wxPython together,
|
|
|
|
# in other words, if you comment out the *shared* above. If this is the
|
|
|
|
# case then you should ensure that the main() function is Python's, not
|
|
|
|
# wxWindows'. You can rebuild $(WXWIN)/src/gtk/app.cpp with NOMAIN defined
|
|
|
|
# to force this...
|
|
|
|
MY_LINKCC=$(CCC)
|
|
|
|
|
|
|
|
|
|
|
|
## Pick one of these, or set your own. This is where the
|
|
|
|
## wxPython module should be installed. It should be a
|
|
|
|
## subdirectory named wxPython.
|
|
|
|
#TARGETDIR=..
|
|
|
|
#TARGETDIR=$(BINLIBDEST)/site-packages/wxPython
|
|
|
|
TARGETDIR=$(BINLIBDEST)/wxPython
|
|
|
|
|
|
|
|
wxc wx.cpp helpers.cpp windows.cpp events.cpp misc.cpp gdi.cpp \
|
|
|
|
mdi.cpp controls.cpp controls2.cpp windows2.cpp cmndlgs.cpp \
|
1999-06-23 10:03:44 +00:00
|
|
|
frames.cpp stattool.cpp windows3.cpp image.cpp misc2.cpp \
|
1999-08-05 20:38:51 +00:00
|
|
|
utils.cpp printfw.cpp libpy.c libptr.c \
|
1999-05-02 19:23:38 +00:00
|
|
|
## comment out the next line to disable wxGLCanvas
|
|
|
|
##_glcanvas.cpp glcanvas.cpp -DWITH_GLCANVAS -lGL -lGLU \
|
|
|
|
-I. $(WX_CONFIG_CFLAGS) -I/usr/local/lib/glib/include \
|
|
|
|
-DSWIG_GLOBAL -DWXP_WITH_THREAD $(SEPARATE) -Xlinker $(WX_CONFIG_LIBS)
|
|
|
|
|
|
|
|
|
|
|
|
|