4
4
@echo ' Here are the targets:'
5
5
@echo ' '
6
6
@echo ' To develop : "make develop"'
7
- @echo ' To test install : "make testinstall"'
8
7
@echo ' To install : "make install"'
9
- @echo ' To test publish : "make testpublish"'
10
8
@echo ' To publish : "make publish"'
11
9
12
10
@echo 'To check clang : "make check_clang"'
17
15
@echo ''
18
16
@echo 'e.g. on linux: PATH=/usr/lib/llvm-3.3/bin:... make check_dragonegg'
19
17
@echo ''
20
- @echo 'To turn md 2 html : "make zippity"'
21
- @echo ''
22
- @echo 'then upload the zip file to https://pypi.python.org/pypi'
23
- @echo ''
24
- @echo 'To pylint : "make lint"'
18
+ @echo 'To pylint : "make lint"'
25
19
@echo ''
26
20
27
21
@@ -38,16 +32,8 @@ dist: clean
38
32
# INCREASE the version number in wllvm/version.py,
39
33
# otherwise the server will give you an error.
40
34
41
- testpublish : dist
42
- python setup.py register -r https://testpypi.python.org/pypi
43
- python setup.py sdist upload -r https://testpypi.python.org/pypi
44
-
45
- testinstall :
46
- pip install -i https://testpypi.python.org/pypi wllvm
47
-
48
35
publish : dist
49
- python setup.py register -r https://pypi.python.org/pypi
50
- python setup.py sdist upload -r https://pypi.python.org/pypi
36
+ python setup.py sdist upload
51
37
52
38
install :
53
39
pip install
@@ -58,11 +44,6 @@ check_clang:
58
44
check_dragonegg :
59
45
cd test ; python -m unittest -v test_base_driver test_dragonegg_driver
60
46
61
- zippity :
62
- rm -rf doczip* ; mkdir doczip;
63
- cat README.md | pandoc -f markdown_github > doczip/index.html
64
- zip -r -j doczip.zip doczip
65
-
66
47
clean :
67
48
rm -f wllvm/* .pyc wllvm/* ~
68
49
0 commit comments