source:
branches/numpy_misc/tools/acceptance_tests/mandelbrot/compile_mandelbrot_c_extensions.py
@
7244
Last change on this file since 7244 was 6996, checked in by , 16 years ago | |
---|---|
|
|
File size: 236 bytes |
Line | |
---|---|
1 | #!/usr/bin/env python |
2 | |
3 | """This module will compile the necessary c-extensions for the mandelbrot demos |
4 | """ |
5 | |
6 | import os |
7 | |
8 | s = 'python compile.py mandel_ext.c' |
9 | |
10 | os.system(s) |
11 | |
12 | s = 'python compile.py mandelplot_ext.c' |
13 | |
14 | os.system(s) |
Note: See TracBrowser
for help on using the repository browser.