summaryrefslogtreecommitdiff
path: root/numpy/fft/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/fft/SConstruct')
-rw-r--r--numpy/fft/SConstruct13
1 files changed, 13 insertions, 0 deletions
diff --git a/numpy/fft/SConstruct b/numpy/fft/SConstruct
new file mode 100644
index 000000000..2a53f6477
--- /dev/null
+++ b/numpy/fft/SConstruct
@@ -0,0 +1,13 @@
+# 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']))
+
+fftpack_lite = env.NumpyPythonExtension('fftpack_lite',
+ source = ['fftpack_litemodule.c',
+ 'fftpack.c'])