2007-11-14 17:56:07 +00:00
|
|
|
@echo off
|
2009-01-08 12:34:19 +00:00
|
|
|
: batch file for generating the windows .exe installer
|
2009-01-07 19:24:38 +00:00
|
|
|
set PYTHON="c:\Python26\python.exe"
|
2007-11-14 17:56:07 +00:00
|
|
|
cd doc\en
|
|
|
|
|
%PYTHON% ..\rest2htmlnav --stylesheet-path=lc.css --time documentation.txt documentation.html
|
|
|
|
|
%PYTHON% ..\rest2htmlnav --stylesheet-path=lc.css --time index.txt index.html
|
|
|
|
|
%PYTHON% ..\rest2htmlnav --stylesheet-path=lc.css --time install.txt install.html
|
|
|
|
|
%PYTHON% ..\rest2htmlnav --stylesheet-path=lc.css --time other.txt other.html
|
|
|
|
|
%PYTHON% ..\rest2htmlnav --stylesheet-path=lc.css --time upgrading.txt upgrading.html
|
|
|
|
|
%PYTHON% ..\bfknav.py
|
|
|
|
|
cd ..\..
|
2009-01-08 12:34:19 +00:00
|
|
|
rd /S /Q build
|
|
|
|
|
rd /S /Q dist
|
2007-11-14 17:56:07 +00:00
|
|
|
%PYTHON% setup.py sdist --manifest-only
|
2009-01-08 12:34:19 +00:00
|
|
|
REM %PYTHON% setup.py build -c mingw32 bdist_wininst -b hase.bmp --install-script install-linkchecker.py
|
2009-01-07 19:24:38 +00:00
|
|
|
%PYTHON% setup.py build -c mingw32 py2exe
|
2009-01-08 12:34:19 +00:00
|
|
|
: start resource editor for .exe icon
|
2008-05-20 16:56:05 +00:00
|
|
|
REM "%PROGRAMFILES%\XN Resource Editor\XNResourceEditor.exe"
|