summaryrefslogtreecommitdiff
path: root/numpy/lib/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/lib/SConstruct')
-rw-r--r--numpy/lib/SConstruct12
1 files changed, 12 insertions, 0 deletions
diff --git a/numpy/lib/SConstruct b/numpy/lib/SConstruct
new file mode 100644
index 000000000..84795da48
--- /dev/null
+++ b/numpy/lib/SConstruct
@@ -0,0 +1,12 @@
+# Last Change: Thu Oct 18 09:00 PM 2007 J
+# vim:syntax=python
+import __builtin__
+__builtin__.__NUMPY_SETUP__ = True
+from numpy.distutils.misc_util import get_numpy_include_dirs
+from numscons import GetNumpyEnvironment, scons_get_paths
+
+env = GetNumpyEnvironment(ARGUMENTS)
+env.Append(CPPPATH = scons_get_paths(env['include_bootstrap']))
+
+_compiled_base = env.NumpyPythonExtension('_compiled_base',
+ source = ['src/_compiled_base.c'])