[PD-cvs] externals/grill/py build-lnx-pd-gcc.sh,NONE,1.1 build-mac-pd-gcc.sh,NONE,1.1 config-lnx-gcc.txt,NONE,1.1 config-mac-gcc.txt,NONE,1.1 config-win-msvc.txt,NONE,1.1 makefile-lnx-gcc.txt,NONE,1.1 makefile-mac-gcc.txt,NONE,1.1 build-win-max-msvc.bat,1.1,1.2 build-win-pd-msvc.bat,1.1,1.2 makefile-win-msvc.txt,1.1,1.2 build-pd-bcc.bat,1.1.1.1,NONE build-pd-darwin.sh,1.1,NONE build-pd-linux.sh,1.2,NONE config-pd-bcc.txt,1.2,NONE config-pd-darwin.txt,1.5,NONE config-pd-linux.txt,1.8,NONE config-win-max-msvc.txt,1.1,NONE config-win-pd-msvc.txt,1.1,NONE makefile.pd-bcc,1.2,NONE makefile.pd-darwin,1.6,NONE makefile.pd-linux,1.6,NONE py.cw,1.2,NONE

Thomas Grill xovo at users.sourceforge.net
Sat Dec 18 06:04:45 CET 2004


Update of /cvsroot/pure-data/externals/grill/py
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5673

Modified Files:
	build-win-max-msvc.bat build-win-pd-msvc.bat 
	makefile-win-msvc.txt 
Added Files:
	build-lnx-pd-gcc.sh build-mac-pd-gcc.sh config-lnx-gcc.txt 
	config-mac-gcc.txt config-win-msvc.txt makefile-lnx-gcc.txt 
	makefile-mac-gcc.txt 
Removed Files:
	build-pd-bcc.bat build-pd-darwin.sh build-pd-linux.sh 
	config-pd-bcc.txt config-pd-darwin.txt config-pd-linux.txt 
	config-win-max-msvc.txt config-win-pd-msvc.txt makefile.pd-bcc 
	makefile.pd-darwin makefile.pd-linux py.cw 
Log Message:
use flext build system
using flext build system
updated build system


Index: build-win-pd-msvc.bat
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/py/build-win-pd-msvc.bat,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** build-win-pd-msvc.bat	17 Dec 2004 05:04:29 -0000	1.1
--- build-win-pd-msvc.bat	18 Dec 2004 05:04:43 -0000	1.2
***************
*** 1,4 ****
  @echo --- Building with MS Visual C++ ---
  
! nmake -f ..\flext\build\make-win-pd-msvc.txt clean 
! nmake -f ..\flext\build\make-win-pd-msvc.txt
--- 1,3 ----
  @echo --- Building with MS Visual C++ ---
  
! nmake -f ..\flext\build\nmake.mak PLATFORM=win RTSYS=pd COMPILER=msvc %1 %2 %3 %4 %5 %6 %7 %8 %9

--- NEW FILE: config-win-msvc.txt ---
# Your settings are defined in the files
# ..\flext\build\config-win-pd-msvc.txt
# and
# ..\flext\build\config-win-max-msvc.txt
#
# You can override them here.

# where is the Python installation?
PYTHONPATH=c:\programme\prog\python24

--- build-pd-linux.sh DELETED ---

--- config-pd-linux.txt DELETED ---

--- NEW FILE: build-lnx-pd-gcc.sh ---
make -f ../flext/build/gnumake.mak PLATFORM=lnx RTSYS=pd COMPILER=gcc $*

--- NEW FILE: makefile-mac-gcc.txt ---
# usage:
# to build run "sh build-mac-max-gcc.sh" or "sh build-mac-pd-gcc.sh"
#

LIBS += -framework Python

# multithreaded build
THREADED=1

Index: build-win-max-msvc.bat
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/py/build-win-max-msvc.bat,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** build-win-max-msvc.bat	17 Dec 2004 05:04:29 -0000	1.1
--- build-win-max-msvc.bat	18 Dec 2004 05:04:43 -0000	1.2
***************
*** 1,4 ****
  @echo --- Building with MS Visual C++ ---
  
! nmake -f ..\flext\build\make-win-max-msvc.txt clean 
! nmake -f ..\flext\build\make-win-max-msvc.txt
--- 1,3 ----
  @echo --- Building with MS Visual C++ ---
  
! nmake -f ..\flext\build\nmake.mak PLATFORM=win RTSYS=max COMPILER=msvc %1 %2 %3 %4 %5 %6 %7 %8 %9

--- build-pd-bcc.bat DELETED ---

--- makefile.pd-darwin DELETED ---

--- config-win-max-msvc.txt DELETED ---

--- NEW FILE: build-mac-pd-gcc.sh ---
make -f ../flext/build/gnumake.mak PLATFORM=mac RTSYS=pd COMPILER=gcc $*

--- makefile.pd-bcc DELETED ---

--- config-pd-bcc.txt DELETED ---

Index: makefile-win-msvc.txt
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/py/makefile-win-msvc.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** makefile-win-msvc.txt	17 Dec 2004 05:04:29 -0000	1.1
--- makefile-win-msvc.txt	18 Dec 2004 05:04:43 -0000	1.2
***************
*** 1,5 ****
- # py/pyext - python script object for PD and Max/MSP
- # Copyright (C)2002-04 Thomas Grill (gr at grrrr.org)
- #
  # Makefile for MSVC++ 6 and 7
  #
--- 1,2 ----
***************
*** 13,15 ****
  
  # multithreaded build
! FLEXT_THREADED=1
--- 10,12 ----
  
  # multithreaded build
! THREADED=1

--- NEW FILE: makefile-lnx-gcc.txt ---
# usage:
# to build run "sh build-mac-max-gcc.sh" or "sh build-mac-pd-gcc.sh"
#

INCPATH += -I$(PYTHONPREFIX)/include/python$(PYTHONVERSION)
LIBS += -lpython$(PYTHONVERSION)

# multi-threaded build
THREADED=1

--- config-win-pd-msvc.txt DELETED ---

--- py.cw DELETED ---

--- build-pd-darwin.sh DELETED ---

--- config-pd-darwin.txt DELETED ---

--- NEW FILE: config-mac-gcc.txt ---
# Your settings are defined in the files
# ../flext/build/config-mac-pd-gcc.txt
# and
# ../flext/build/config-mac-max-gcc.txt
#
# You can override them here.

--- makefile.pd-linux DELETED ---

--- NEW FILE: config-lnx-gcc.txt ---
# Your settings are defined in the files
# ../flext/build/config-mac-pd-gcc.txt
# and
# ../flext/build/config-mac-max-gcc.txt
#
# You can override them here.

# what is the base prefix of the Python
PYTHONPREFIX=/usr

# which Python version do you want to compile against
PYTHONVERSION=2.3





More information about the Pd-cvs mailing list