7 lines
161 B
7 lines
161 B
5 years ago
|
Import('env')
|
||
|
|
||
|
# parser
|
||
|
env.Command(['common_pyx.so'],
|
||
|
['common_pyx_setup.py', 'clock.pyx'],
|
||
|
"cd common && python3 common_pyx_setup.py build_ext --inplace")
|