forked from concurrence/concurrence
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
40 lines (30 loc) · 770 Bytes
/
Makefile
File metadata and controls
40 lines (30 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
build:
$(PYTHON) setup.py build
ext:
$(PYTHON) setup.py build_ext --inplace
egg:
$(PYTHON) setup.py bdist_egg
install:
$(PYTHON) setup.py install
sdist:
$(PYTHON) setup.py sdist
_doc:
cd doc; make html
doc: _doc
clean:
-find . -name *.pyc -exec rm -rf {} \;
-find . -name *.so -exec rm -rf {} \;
-find . -name *.dep -exec rm -rf {} \;
-find . -name *~ -exec rm -rf {} \;
-find . -name *.egg-info -exec rm -rf {} \;
rm -rf setuptools*.egg
rm -rf doc/_build
rm -rf build dist
rm -rf lib/concurrence/database/mysql/concurrence.database.mysql._mysql.c
rm -rf lib/concurrence/concurrence._event.c
rm -rf lib/concurrence/io/concurrence.io._io.c
dist_clean: clean
find . -name .svn -exec rm -rf {} \;
_test:
cd test; make test
test: _test