aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/py/build
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/py/build')
-rw-r--r--externals/grill/py/build/config-lnx.def17
-rw-r--r--externals/grill/py/build/config-mac.def14
-rw-r--r--externals/grill/py/build/config-win.def17
-rw-r--r--externals/grill/py/build/gnumake-lnx-gcc.inc21
-rw-r--r--externals/grill/py/build/gnumake-mac-gcc.inc22
-rw-r--r--externals/grill/py/build/gnumake-win-cygwin.inc22
-rw-r--r--externals/grill/py/build/nmake-win-msvc.inc23
7 files changed, 0 insertions, 136 deletions
diff --git a/externals/grill/py/build/config-lnx.def b/externals/grill/py/build/config-lnx.def
deleted file mode 100644
index 86477fcc..00000000
--- a/externals/grill/py/build/config-lnx.def
+++ /dev/null
@@ -1,17 +0,0 @@
-# what is the base prefix of the Python installation?
-PYTHONPREFIX=/usr
-
-# which Python version do you want to compile against?
-PYTHONVERSION=2.4
-
-# uncomment if numpy/numarray/numeric support should be compiled in
-# for info see http://numeric.scipy.org
-PY_NUMPY=1
-# PY_NUMARRAY=1
-# PY_NUMERIC=1
-
-# use thread-safe GIL functionality (do this for python version >= 2.3!)
-PY_USE_GIL=1
-
-# use inofficial (pure data) functionality
-# PY_USE_INOFFICIAL=1
diff --git a/externals/grill/py/build/config-mac.def b/externals/grill/py/build/config-mac.def
deleted file mode 100644
index 3ecd7219..00000000
--- a/externals/grill/py/build/config-mac.def
+++ /dev/null
@@ -1,14 +0,0 @@
-# which major python version?
-PYTHONVER=23
-
-# uncomment if numpy/numarray/numeric support should be compiled in
-# for info see http://numeric.scipy.org
-PY_NUMPY=1
-# PY_NUMARRAY=1
-# PY_NUMERIC=1
-
-# use thread-safe GIL functionality (do this for python version >= 2.3!)
-PY_USE_GIL=1
-
-# use inofficial (pure data) functionality
-# PY_USE_INOFFICIAL=1
diff --git a/externals/grill/py/build/config-win.def b/externals/grill/py/build/config-win.def
deleted file mode 100644
index 9c81bf35..00000000
--- a/externals/grill/py/build/config-win.def
+++ /dev/null
@@ -1,17 +0,0 @@
-# which major python version?
-PYTHONVER=24
-
-# where is the Python installation?
-PYTHONPATH=%programfiles%/python$(PYTHONVER)
-
-# uncomment if numpy/numarray/numeric support should be compiled in
-# for info see http://numeric.scipy.org
-PY_NUMPY=1
-# PY_NUMARRAY=1
-# PY_NUMERIC=1
-
-# use thread-safe GIL functionality (do this for python version >= 2.3!)
-PY_USE_GIL=1
-
-# use inofficial (pure data) functionality
-# PY_USE_INOFFICIAL=1
diff --git a/externals/grill/py/build/gnumake-lnx-gcc.inc b/externals/grill/py/build/gnumake-lnx-gcc.inc
deleted file mode 100644
index 7bbde1f0..00000000
--- a/externals/grill/py/build/gnumake-lnx-gcc.inc
+++ /dev/null
@@ -1,21 +0,0 @@
-DEFS += -DPY_EXPORTS
-INCPATH += -I$(PYTHONPREFIX)/include/python$(PYTHONVERSION)
-LIBS += -lpython$(PYTHONVERSION)
-
-ifdef PY_NUMARRAY
-DEFS += -DPY_NUMARRAY
-endif
-ifdef PY_NUMPY
-DEFS += -DPY_NUMPY
-endif
-ifdef PY_NUMERIC
-DEFS += -DPY_NUMERIC
-endif
-
-ifdef PY_USE_GIL
-DEFS += -DPY_USE_GIL
-endif
-
-ifdef PY_USE_INOFFICIAL
-DEFS += -DPY_USE_INOFFICIAL
-endif
diff --git a/externals/grill/py/build/gnumake-mac-gcc.inc b/externals/grill/py/build/gnumake-mac-gcc.inc
deleted file mode 100644
index d077c84e..00000000
--- a/externals/grill/py/build/gnumake-mac-gcc.inc
+++ /dev/null
@@ -1,22 +0,0 @@
-DEFS += -DPY_EXPORTS
-LIBS += -F/Library/Frameworks -framework Python
-
-ifdef PY_NUMARRAY
-DEFS += -DPY_NUMARRAY
-endif
-ifdef PY_NUMPY
-DEFS += -DPY_NUMPY
-INCPATH += -I/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/numpy/core/include
-#INCPATH += -F/System/Library/Frameworks -I/Library/Python/2.3/site-packages/numpy/core/include
-endif
-ifdef PY_NUMERIC
-DEFS += -DPY_NUMERIC
-endif
-
-ifdef PY_USE_GIL
-DEFS += -DPY_USE_GIL
-endif
-
-ifdef PY_USE_INOFFICIAL
-DEFS += -DPY_USE_INOFFICIAL
-endif
diff --git a/externals/grill/py/build/gnumake-win-cygwin.inc b/externals/grill/py/build/gnumake-win-cygwin.inc
deleted file mode 100644
index a64fd9e1..00000000
--- a/externals/grill/py/build/gnumake-win-cygwin.inc
+++ /dev/null
@@ -1,22 +0,0 @@
-DEFS += -DPY_EXPORTS
-INCPATH += -I$(PYTHONPATH)/include
-LIBPATH += -L$(PYTHONPATH)/libs
-LIBS += -lpython$(PYTHONVER) -lshell32
-
-ifdef PY_NUMARRAY
-DEFS += -DPY_NUMARRAY
-endif
-ifdef PY_NUMPY
-DEFS += -DPY_NUMPY
-endif
-ifdef PY_NUMERIC
-DEFS += -DPY_NUMERIC
-endif
-
-ifdef PY_USE_GIL
-DEFS += -DPY_USE_GIL
-endif
-
-ifdef PY_USE_INOFFICIAL
-DEFS += -DPY_USE_INOFFICIAL
-endif
diff --git a/externals/grill/py/build/nmake-win-msvc.inc b/externals/grill/py/build/nmake-win-msvc.inc
deleted file mode 100644
index 7cf0d04d..00000000
--- a/externals/grill/py/build/nmake-win-msvc.inc
+++ /dev/null
@@ -1,23 +0,0 @@
-DEFS = $(DEFS) /DPY_EXPORTS
-INCPATH=/I$(PYTHONPATH)\include
-LIBPATH=/LIBPATH:$(PYTHONPATH)\libs
-LIBS=$(LIBS) shell32.lib
-
-!ifdef PY_NUMARRAY
-DEFS = $(DEFS) /DPY_NUMARRAY
-!endif
-!ifdef PY_NUMPY
-INCPATH=$(INCPATH) /I$(PYTHONPATH)\Lib\site-packages\numpy\core\include
-DEFS = $(DEFS) /DPY_NUMPY
-!endif
-!ifdef PY_NUMERIC
-DEFS = $(DEFS) /DPY_NUMERIC
-!endif
-
-!ifdef PY_USE_GIL
-DEFS = $(DEFS) /DPY_USE_GIL
-!endif
-
-!ifdef PY_USE_INOFFICIAL
-DEFS = $(DEFS) /DPY_USE_INOFFICIAL
-!endif