source:
branches/numpy_misc/tools/acceptance_tests/mandelbrot/compile_mandelbrot_c_extensions.py
Last change on this file was 6996, checked in by , 16 years ago | |
---|---|
|
|
File size: 236 bytes |
Rev | Line | |
---|---|---|
[6996] | 1 | #!/usr/bin/env python |
2 | ||
[6991] | 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.