]> git.saurik.com Git - wxWidgets.git/blame - wxPython/distrib/makedocs.bat
Applied patch [ 549256 ] fix minor bug in widgets sample
[wxWidgets.git] / wxPython / distrib / makedocs.bat
CommitLineData
09740c31
RD
1@echo off
2
3rem **** Make a directory to build up a distribution tree
4md _distrib_zip
5md _distrib_zip\wxPython-%1
6
7cd _distrib_zip
8
9rem **** copy the docs into the tree
10md wxPython-%1\docs
11md wxPython-%1\docs\wx
12md wxPython-%1\docs\ogl
13copy %WXWIN%\docs\html\wx\*.* wxPython-%1\docs\wx
14copy wxPython-%1\docs\wx\wx.htm wxPython-%1\docs\wx\index.htm
15copy %WXWIN%\docs\html\ogl\*.* wxPython-%1\docs\ogl
16copy wxPython-%1\docs\ogl\ogl.htm wxPython-%1\docs\ogl\index.htm
17
18rem **** zip up the docs
19rem zip -r ..\distrib\wxPython-docs-%1.zip wxPython-%1\docs
20tar cvf ..\dist\wxPythonDocs-%1.tar wxPython-%1
21gzip -9 ..\dist\wxPythonDocs-%1.tar
22
23
24rem **** Cleanup
25cd ..
26del /sxzy _distrib_zip