Update of /cvsroot/pure-data/externals/grill/py/build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25400/build
Added Files:
config-lnx.def config-mac.def config-win.def
makefile-lnx-gcc.inc makefile-mac-gcc.inc
makefile-win-msvc.inc package.txt
Log Message:
updated make system
--- NEW FILE: config-mac.def ---
# nothing to adjust!
--- NEW FILE: makefile-mac-gcc.inc ---
#
LIBS += -framework Python
--- NEW FILE: config-win.def ---
# where is the Python installation?
PYTHONPATH=c:\programme\prog\python24
--- NEW FILE: package.txt ---
NAME=py
THREADED=1
HAVECONFIG=1
HAVEMAKE=1
SRCDIR=source
SRCS= main.cpp py.cpp pyext.cpp modmeth.cpp clmeth.cpp register.cpp pyargs.cpp bound.cpp
HDRS= main.h pyext.h
--- NEW FILE: config-lnx.def ---
# what is the base prefix of the Python installation?
PYTHONPREFIX=/usr
# which Python version do you want to compile against?
PYTHONVERSION=2.3
--- NEW FILE: makefile-win-msvc.inc ---
INCPATH=/I$(PYTHONPATH)\include
LIBPATH=/LIBPATH:$(PYTHONPATH)\libs
--- NEW FILE: makefile-lnx-gcc.inc ---
INCPATH += -I$(PYTHONPREFIX)/include/python$(PYTHONVERSION)
LIBS += -lpython$(PYTHONVERSION)