summaryrefslogtreecommitdiff
path: root/numpy/fft/SConstruct
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2008-01-07 02:42:16 +0000
committerDavid Cournapeau <cournape@gmail.com>2008-01-07 02:42:16 +0000
commit022f76e7e3d66af6dbbd058f70095956407486b5 (patch)
treee7015089b5e69814ef6953108634b8d5922198a2 /numpy/fft/SConstruct
parentd3a2b3467bbf3c001713978bb2c3f7e2808399a8 (diff)
downloadnumpy-022f76e7e3d66af6dbbd058f70095956407486b5.tar.gz
numpy.fft builds with scons
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'])