-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
60 lines (45 loc) · 1.16 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
#
# to use a specific python version call
# `make PYTHON=python2.2'
#
SHELL = /bin/sh
PYTHON = python2.3
PYTHON = python
all build:
$(PYTHON) setup.py build
build-7.10.8:
$(PYTHON) setup.py build --curl-config=/home/hosts/localhost/packages/curl-7.10.8/bin/curl-config
test: build
$(PYTHON) tests/test_internals.py -q
# (needs GNU binutils)
strip: build
strip -p --strip-unneeded build/lib*/*.so
chmod -x build/lib*/*.so
install install_lib:
$(PYTHON) setup.py $@
clean:
-rm -rf build dist
-rm -f *.pyc *.pyo */*.pyc */*.pyo */*/*.pyc */*/*.pyo
-rm -f MANIFEST
cd src && $(MAKE) clean
distclean: clean
maintainer-clean: distclean
dist sdist: distclean
$(PYTHON) setup.py sdist
# target for maintainer
windist: distclean
rm -rf build
python2.2 setup.py bdist_wininst
rm -rf build
python2.3 setup.py bdist_wininst
rm -rf build
python2.4 setup.py bdist_wininst
rm -rf build
python2.2 setup_win32_ssl.py bdist_wininst
rm -rf build
python2.3 setup_win32_ssl.py bdist_wininst
rm -rf build
python2.4 setup_win32_ssl.py bdist_wininst
rm -rf build
.PHONY: all build test strip install install_lib clean distclean maintainer-clean dist sdist windist
.NOEXPORT: