forked from Python-Markdown/markdown
-
Notifications
You must be signed in to change notification settings - Fork 2
/
makefile
66 lines (57 loc) · 1.46 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
63
64
65
66
# Python-Markdown makefile
.PHONY : help
help:
@echo 'Usage: make <subcommand>'
@echo ''
@echo 'Subcommands:'
@echo ' install Install Python-Markdown locally'
@echo ' deploy Register and upload a new release to PyPI'
@echo ' build Build a source distribution'
@echo ' build-win Build a Windows exe distribution'
@echo ' docs Build documentation'
@echo ' test Run all tests'
@echo ' update-tests Generate html files for updated text files in tests'
@echo ' clean Clean up the source directories'
.PHONY : install
install:
python setup.py install
.PHONY : deploy
deploy:
python setup.py register
python setup.py sdist --manifest-only
python setup.py sdist --formats zip,gztar upload
.PHONY : build
build:
python setup.py sdist --manifest-only
python setup.py sdist --formats zip,gztar
.PHONY : build-win
build-win:
python setup.py sdist --manifest-only
python setup.py bdist_wininst
.PHONY : docs
docs:
python setup.py build_docs --force
cd build/docs && zip -r ../docs.zip .
.PHONY : test
test:
tox
.PHONY : update-tests
update-tests:
python run-tests.py update
.PHONY : clean
clean:
rm -f MANIFEST
rm -f test-output.html
rm -f *.pyc
rm -f markdown/*.pyc
rm -f markdown/extensions/*.pyc
rm -f *.bak
rm -f markdown/*.bak
rm -f markdown/extensions/*.bak
rm -f *.swp
rm -f markdown/*.swp
rm -f markdown/extensions/*.swp
rm -rf build
rm -rf dist
rm -rf tmp
# git clean -dfx'