File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,16 @@ include ./build/main.mk
8
8
9
9
setup : # # Run python setup.py sdist
10
10
python setup.py sdist
11
+ sdist : setup
12
+
13
+ bdist : # # Run python setup.py bdist
14
+ python setup.py bdist
15
+
16
+ bdist_rpm : # # Run python setup.py bdist_rpm
17
+ python setup.py bdist_rpm
18
+
19
+ bdist_wininst : # # Run python setup.py bdist_wininst
20
+ python setup.py bdist_wininst
11
21
12
22
install : # # Runs python setup.py install
13
23
python setup.py install
@@ -17,7 +27,8 @@ test: ## Runs tests
17
27
18
28
.PHONY : clean
19
29
clean :: # # Removes all temporary files - Executes make clean
20
- rm -rf ./dist
30
+ rm -rf ./build/lib ./build/scripts-* ./build/bdist.*
31
+ rm -rf ./dist ./vncpasswd.py.egg-info/
21
32
rm -f MANIFEST
22
33
rm -f README.rst README.txt
23
34
find ./ -iname ' *.pyc' -exec rm -f ' {}' \;
You can’t perform that action at this time.
0 commit comments