]> git.saurik.com Git - wxWidgets.git/blob - wxPython/distrib/zipit.bat
added wxSpinCtrl::SetSelection()
[wxWidgets.git] / wxPython / distrib / zipit.bat
1 @echo off
2
3 rem **** Make a directory to build up a distribution tree
4 md _distrib_zip
5 md _distrib_zip\wxPython-%1
6
7 REM rem **** Copy the license files
8 REM copy %WXWIN%\docs\gpl.txt _distrib_zip\wxPython-%1
9 REM copy %WXWIN%\docs\lgpl.txt _distrib_zip\wxPython-%1
10 REM copy %WXWIN%\docs\licence.txt _distrib_zip\wxPython-%1
11 REM copy %WXWIN%\docs\licendoc.txt _distrib_zip\wxPython-%1
12 REM copy %WXWIN%\docs\preamble.txt _distrib_zip\wxPython-%1
13
14 REM rem **** Make a zip fron the live files
15 REM zip -@ -r _distrib_zip\temp.zip < distrib\wxPython.rsp
16
17 REM rem **** Unzip it in our build dir
18 REM cd _distrib_zip\wxPython-%1
19 REM unzip ..\temp.zip
20
21 REM rem **** zip up the build dir
22 REM cd ..
23 REM zip -r ..\distrib\wxPython-src-%1.zip wxPython-%1
24
25 cd _distrib_zip
26
27 rem **** copy the docs into the tree
28 md wxPython-%1\docs
29 md wxPython-%1\docs\wx
30 md wxPython-%1\docs\ogl
31 copy %WXWIN%\docs\html\wx\*.* wxPython-%1\docs\wx
32 copy wxPython-%1\docs\wx\wx.htm wxPython-%1\docs\wx\index.htm
33 copy %WXWIN%\docs\html\ogl\*.* wxPython-%1\docs\ogl
34 copy wxPython-%1\docs\ogl\ogl.htm wxPython-%1\docs\ogl\index.htm
35
36 rem **** zip up the docs
37 rem zip -r ..\distrib\wxPython-docs-%1.zip wxPython-%1\docs
38 tar cvf ..\dist\wxPython-docs-%1.tar wxPython-%1
39 gzip -9 ..\dist\wxPython-docs-%1.tar
40
41
42 rem **** Cleanup
43 cd ..
44 del /sxzy _distrib_zip