-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
62 lines (48 loc) · 1.43 KB
/
Makefile
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
PYTHON=python
SETUPFLAGS=
COMPILEFLAGS=
INSTALLFLAGS=
PYTHONS=python2.6 python2.7 python3.1 python3.2 python3.3 python3.4
.PHONY: inplace all rebuild test_inplace test fulltests clean distclean
.PHONY: sdist install
all: inplace README.html
README.html: README.txt CHANGES.txt void.css
@echo | cat README.txt - CHANGES.txt | \
rst2html --verbose --exit-status=1 --stylesheet=void.css \
> README.html
inplace:
$(PYTHON) setup.py $(SETUPFLAGS) build_ext -i $(COMPILEFLAGS)
rebuild: clean all
test_inplace: inplace
$(PYTHON) -m tests
test: test_inplace
fulltest:
$(MAKE) clean
@set -e; \
for python in $(PYTHONS); do \
if [ -z $$(which $$python) ]; then \
echo "*** $$python not found ***\n"; \
continue; \
fi; \
echo "*** $$python ***"; \
$$python $(SETUPFLAGS) setup.py -q test; \
echo ""; \
done
$(MAKE) clean
clean:
@find . \( -name '*.o' -or -name '*.so' -or -name '*.sl' -or \
-name '*.py[cod]' -or -name README.html \) \
-and -type f -delete
distclean: clean
@rm -rf build
@rm -rf dist
@find . \( -name '~*' -or -name '*.orig' -or -name '*.bak' -or \
-name 'core*' \) -and -type f -delete
whitespace:
@find \( -name '*.rst' -or -name '*.py' -or -name '*.xml' \) | \
xargs sed -i 's/[ \t]*$$//'
sdist: README.html
$(PYTHON) setup.py sdist --formats gztar,zip
install:
$(PYTHON) setup.py $(SETUPFLAGS) build $(COMPILEFLAGS)
$(PYTHON) setup.py install $(INSTALLFLAGS)