There was an error while loading. Please reload this page.
1 parent 06e5fcc commit c1ead41Copy full SHA for c1ead41
1 file changed
Makefile
@@ -4,6 +4,7 @@ PANDOC = pandoc
4
PYLINT = pylint
5
6
EMAIL = "mahtin@mahtin.com"
7
+NAME = "cloudflare"
8
9
all: README.rst build
10
@@ -23,6 +24,13 @@ sdist: all
23
24
make clean
25
make test
26
$(PYTHON) setup.py sdist
27
+ rm -rf ${NAME}.egg-info
28
+
29
+bdist: all
30
+ make clean
31
+ make test
32
+ $(PYTHON) setup.py bdist
33
34
35
upload: clean all
36
$(PYTHON) setup.py sdist upload --sign --identity="$(EMAIL)"
@@ -35,4 +43,5 @@ clean:
43
rm -rf dist
44
mkdir build dist
37
45
$(PYTHON) setup.py clean
46
38
47
0 commit comments