We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fad50af commit 2595a01Copy full SHA for 2595a01
Makefile
@@ -1,11 +1,27 @@
1
-clean:
+.PHONY : clean develop build clean clean_pyc tseries doc
2
+
3
+clean: clean_pyc
4
-rm -rf build dist
5
+ -find . -name '*.so' -exec rm -f {} \;
6
7
+clean_pyc:
8
+ -find . -name '*.pyc' -exec rm -f {} \;
9
10
tseries: pandas/lib.pyx pandas/tslib.pyx pandas/hashtable.pyx
11
python setup.py build_ext --inplace
12
13
sparse: pandas/src/sparse.pyx
- -python setup.py build_ext --inplace
14
+ python setup.py build_ext --inplace
15
16
+build: clean_pyc
17
18
19
+develop: build
20
+ -python setup.py develop
21
-test: sparse
- -python pandas/tests/test_libsparse.py
22
+doc:
23
+ -rm -rf doc/build
24
+ -rm -rf doc/source/generated
25
+ cd doc; \
26
+ python make.py clean; \
27
+ python make.py html
0 commit comments