X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/42d9875b88bc277f36543a0543092f2e164c0c7a..c6b65b76a196e1aa2313f89f6fc609d497c388a0:/distrib/msw/tardist diff --git a/distrib/msw/tardist b/distrib/msw/tardist index b296d4be49..2c719e736e 100644 --- a/distrib/msw/tardist +++ b/distrib/msw/tardist @@ -251,6 +251,22 @@ else echo "Warning - did not find $WXDEST/deliver/extra/wxWidgets-${WXVER}-VC.zip" fi +# If we have the full set of eVC++ project files, +# get them +if [ -f $WXDEST/extra/wxWidgets-${WXVER}-eVC.zip ]; then + unzip -o $WXDEST/extra/wxWidgets-${WXVER}-eVC.zip +else + echo "Warning - did not find $WXDEST/deliver/extra/wxWidgets-${WXVER}-eVC.zip" +fi + +# If we have the full set of DMC project files, +# get them +if [ -f $WXDEST/extra/wxWidgets-${WXVER}-DMC.zip ]; then + unzip -o $WXDEST/extra/wxWidgets-${WXVER}-DMC.zip +else + echo "Warning - did not find $WXDEST/deliver/extra/wxWidgets-${WXVER}-DMC.zip" +fi + # If we have the full set of Mac CW project files, # get them if [ -f $WXDEST/extra/wxWidgets-${WXVER}-CW-Mac.zip ]; then @@ -288,8 +304,34 @@ gzip -c $WXDEST/wxAll-${WXVER}.tar > $WXDEST/wxAll-${WXVER}.tar.gz bzip2 $WXDEST/wxAll-${WXVER}.tar } +domakedocs() +{ + mkdir -p $WXSRC/docs/html/wx + mkdir -p $WXSRC/docs/html/tex2rtf + mkdir -p $WXSRC/docs/html/fl + mkdir -p $WXSRC/docs/html/ogl + mkdir -p $WXSRC/docs/htb + + rm -f -r $WXSRC/docs/html/wx/*.htm* + rm -f -r $WXSRC/docs/htb/wx.htb + + echo Making HTML wxWidgets manual... + cd $WXSRC/docs/latex/wx + cp *.gif $WXSRC/docs/html/wx + tex2rtf manual.tex $WXSRC/docs/html/wx/wx.htm -twice -html + + echo Making HTB wxWidgets manual... + cd $WXSRC/docs/html/wx + zip -q $WXSRC/docs/htb/wx.htb *.html *.gif *.hhp *.hhc *.hhk + + echo Done making manuals. +} + dospinwxdocs() { + # First make the docs + domakedocs + echo Tarring wxDocs... ### Doc sources