mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-17 06:20:27 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3599 e7d03fd6-7b0d-0410-9947-9c21f3af8025
16 lines
791 B
Batchfile
Executable file
16 lines
791 B
Batchfile
Executable file
@echo off
|
|
REM batch file for generating the windows .exe installer
|
|
set PYTHON="c:\Python 25\python.exe"
|
|
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 ..\..
|
|
%PYTHON% setup.py clean --all
|
|
%PYTHON% setup.py sdist --manifest-only
|
|
%PYTHON% setup.py build -c mingw32 bdist_wininst -b hase.bmp
|
|
REM start resource editor for .exe icon
|
|
"%PROGRAMFILES%\XN Resource Editor\XNResourceEditor.exe"
|