You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
358 B
Batchfile
22 lines
358 B
Batchfile
7 years ago
|
@echo off
|
||
|
|
||
|
echo --- Cleaning...
|
||
|
del build\* /s/q > nul
|
||
|
del dist\* /s/q > nul
|
||
|
del docs\*.html /s/q > nul
|
||
|
echo --- Cleaning done
|
||
|
|
||
|
echo --- Generating docs
|
||
|
cd src
|
||
|
c:/WinPrg/Python34/python docgen.py
|
||
|
cd ..
|
||
|
echo --- Generating docs done
|
||
|
|
||
|
echo --- Building executable
|
||
|
cd src
|
||
|
c:/WinPrg/Python34/python setup.py py2exe
|
||
|
cd ..
|
||
|
echo --- Building executable done
|
||
|
|
||
|
pause
|