-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile
51 lines (39 loc) · 1.21 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
PYTHON=python
SETUPFLAGS=
COMPILEFLAGS=
INSTALLFLAGS=
PYTHONS=python2.6 python2.7 python3.1 python3.2 python3.3 python3.4 python3.5
.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:
$(PYTHON) $(SETUPFLAGS) setup.py test
fulltest:
@set -e; \
for python in $(PYTHONS); do \
echo "\n*** $$python ***"; \
$$python $(SETUPFLAGS) setup.py test; \
done
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
sdist: README.html
$(PYTHON) setup.py sdist --formats gztar,zip
install:
$(PYTHON) setup.py $(SETUPFLAGS) build $(COMPILEFLAGS)
$(PYTHON) setup.py install $(INSTALLFLAGS)