source:
trunk/misc/tools/acceptance_tests/mandelbrot/compile_mandelbrot_c_extensions.py
@
8427
Last change on this file since 8427 was 8427, checked in by , 13 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.