]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/distrib/makepreview.bat
Fix compile error
[wxWidgets.git] / wxPython / distrib / makepreview.bat
index 4df8965edeb67c30116f932955b348fbfcd707d0..20736851dd9ce96c8d9fbd2af8e322d81870f803 100755 (executable)
@@ -10,20 +10,27 @@ mkdir %BASE%\wx
 mkdir %BASE%\wxPython
 mkdir %BASE%\demo
 mkdir %BASE%\scripts
+mkdir %BASE%\docs
+mkdir %BASE%\docs\xml
+
 
 rem *** copy files
 copy /s wx %BASE%\wx
 copy /s wxPython %BASE%\wxPython
 copy /s demo %BASE%\demo
 copy /s scripts %BASE%\scripts
-copy ..\BIN\*h_*.dll %BASE%\wx
 
+copy ..\BIN\*h_*.dll %BASE%\wx
+copy docs\MigrationGuide.* %BASE%\docs
+copy docs\CHANGES.txt %BASE%\docs
+copy docs\xml\wxPython-metadata.xml %BASE%\docs\xml
 
 
 
 rem *** remove unneeded files
 cd _distrib_zip
-ffind /A:D /SB CVS > del-files
+ffind /A:D /SB CVS  > del-files
+ffind /SB *.pyc    >> del-files
 cat del-files
 del /sxzy @del-files
 del del-files
@@ -34,7 +41,8 @@ cd ..
 rem *** bundle it all up
 cd _distrib_zip
 tar cvf ../dist/wxPythonWIN32-preview-%1.tar wxPython-%1
-gzip -9 ../dist/wxPythonWIN32-preview-%1.tar
+bzip2 -9 ../dist/wxPythonWIN32-preview-%1.tar
+mv ../dist/wxPythonWIN32-preview-%1.tar.gz ../dist/wxPythonWIN32-preview-%1.tgz
 
 rem *** cleanup
 cd ..