-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmakefile
More file actions
22 lines (18 loc) · 689 Bytes
/
makefile
File metadata and controls
22 lines (18 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
src/trajectorize/_c_extension.so: src/trajectorize/c_ext_utils/build_c_extension.py
(cd src; python trajectorize/c_ext_utils/build_c_extension.py)
autoformat:
autopep8 --in-place --recursive --aggressive --aggressive src/trajectorize/ -v
plots:
bash ./scripts/generate_plots.sh
clean:
# Remove all .o and .so files under trajectorize/
# Also remove CFFI generated C files with name like _c_kerbol_system.c
find src/trajectorize/ -name "*.o" -delete
find src/trajectorize/ -name "*.so" -delete
find src/trajectorize/ -name "_c_*.c" -delete
clean_pybuild:
# remove python build files
rm -rf build/
rm -rf dist/
rm -rf src/trajectorize.egg-info/
rm src/trajectorize/_version.py