Remove all obsolete release-generation scripts.
Only leave the files which are still used for the daily snapshots generation. Also remove the obsolete release-making instructions. See #11610. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63944 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1,128 +0,0 @@
|
||||
# File: makedocs.vc
|
||||
#
|
||||
# Author: Julian Smart
|
||||
# Created: 1997
|
||||
# Updated:
|
||||
# Copyright: (c) 1997, Julian Smart
|
||||
|
||||
WXDIR=$(WXWIN)
|
||||
THISDIR=$(WXWIN)\build\script
|
||||
DOCDIR = $(WXDIR)\docs
|
||||
WAITFLAG=/w
|
||||
|
||||
# Making documents
|
||||
docs: wxhlp rtf pdfrtf wxhtml htmlhelp htb tex2rtf
|
||||
alldocs: docs
|
||||
hlp: wxhlp
|
||||
wxhlp: $(DOCDIR)/winhelp/wx.hlp
|
||||
rtf: $(DOCDIR)/latex/wx/wx.rtf
|
||||
pdfrtf: $(DOCDIR)/pdf/wx.rtf
|
||||
html: wxhtml
|
||||
htb: $(DOCDIR)\htb\wx.htb
|
||||
wxhtml: $(DOCDIR)\html\wx\wx_contents.html
|
||||
htmlhelp: $(DOCDIR)\htmlhelp\wx.chm
|
||||
|
||||
tex2rtf:
|
||||
cd $(WXWIN)\utils\tex2rtf\docs
|
||||
nmake -f makefile.vc
|
||||
cd $(THISDIR)
|
||||
|
||||
|
||||
$(DOCDIR)/winhelp/wx.hlp: $(DOCDIR)/latex/wx/wx.rtf $(DOCDIR)/latex/wx/wx.hpj
|
||||
cd $(DOCDIR)/latex/wx
|
||||
-mkdir $(DOCDIR)\winhelp
|
||||
-erase wx.ph
|
||||
hcw /c /e wx
|
||||
-erase $(DOCDIR)\winhelp\wx.hlp
|
||||
-erase $(DOCDIR)\winhelp\wx.cnt
|
||||
move wx.hlp $(DOCDIR)\winhelp\wx.hlp
|
||||
move wx.cnt $(DOCDIR)\winhelp\wx.cnt
|
||||
cd $(THISDIR)
|
||||
|
||||
$(DOCDIR)/latex/wx/wx.rtf: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/manual.tex
|
||||
cd $(DOCDIR)\latex\wx
|
||||
-start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/wx/manual.tex $(DOCDIR)/latex/wx/wx.rtf -twice -winhelp
|
||||
cd $(THISDIR)
|
||||
|
||||
$(DOCDIR)/pdf/wx.rtf: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/manual.tex
|
||||
cd $(DOCDIR)\latex\wx
|
||||
-mkdir $(DOCDIR)\pdf
|
||||
-copy *.wmf $(DOCDIR)\pdf
|
||||
-copy *.bmp $(DOCDIR)\pdf
|
||||
-start $(WAITFLAG) tex2rtf $(DOCDIR)/latex/wx/manual.tex $(DOCDIR)/pdf/wx.rtf -twice -rtf
|
||||
cd $(THISDIR)
|
||||
|
||||
# This target does two sets of HTML: one using a style sheet, for
|
||||
# the purposes of the CHM file, and one without.
|
||||
$(DOCDIR)\html\wx\wx_contents.html: $(DOCDIR)\latex\wx\classes.tex $(DOCDIR)\latex\wx\body.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)\latex\wx\manual.tex
|
||||
cd $(DOCDIR)\latex\wx
|
||||
-mkdir $(DOCDIR)\html\wx
|
||||
copy *.gif $(DOCDIR)\html\wx
|
||||
-start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\wx\manual.tex $(DOCDIR)\html\wx\wx.htm -twice -html
|
||||
-mkdir $(DOCDIR)\mshtml
|
||||
-mkdir $(DOCDIR)\mshtml\wx
|
||||
copy *.gif $(DOCDIR)\mshtml\wx
|
||||
-start $(WAITFLAG) tex2rtf $(DOCDIR)\latex\wx\manual.tex $(DOCDIR)\mshtml\wx\wx.htm -twice -html -macros $(DOCDIR)\latex\wx\tex2rtf_css.ini
|
||||
-erase $(DOCDIR)\html\wx\*.con
|
||||
-erase $(DOCDIR)\html\wx\*.ref
|
||||
-erase $(DOCDIR)\latex\wx\*.con
|
||||
-erase $(DOCDIR)\latex\wx\*.ref
|
||||
cd $(THISDIR)
|
||||
|
||||
$(DOCDIR)\htmlhelp\wx.chm : $(DOCDIR)\html\wx\wx_contents.html $(DOCDIR)\mshtml\wx\wx_contents.html $(DOCDIR)\mshtml\wx\wx.hhp
|
||||
cd $(DOCDIR)\mshtml\wx
|
||||
copy $(DOCDIR)\latex\wx\wx.css .
|
||||
-hhc wx.hhp
|
||||
-mkdir ..\..\htmlhelp
|
||||
-erase $(DOCDIR)\htmlhelp\wx.chm
|
||||
move wx.chm ..\..\htmlhelp
|
||||
cd $(THISDIR)
|
||||
|
||||
|
||||
|
||||
# An htb file is a zip file containing the .htm, .gif, .hhp, .hhc and .hhk
|
||||
# files, renamed to htb.
|
||||
# This can then be used with e.g. helpview.
|
||||
# Optionally, a cached version of the .hhp file can be generated with hhp2cached.
|
||||
$(DOCDIR)\htb\wx.htb: $(DOCDIR)\html\wx\wx_contents.html
|
||||
cd $(WXDIR)\docs\html\wx
|
||||
-erase wx.zip wx.htb
|
||||
zip wx.zip *.html *.gif *.hhp *.hhc *.hhk
|
||||
-mkdir $(DOCDIR)\htb
|
||||
move wx.zip $(DOCDIR)\htb\wx.htb
|
||||
cd $(THISDIR)
|
||||
|
||||
# In order to force document reprocessing
|
||||
touchmanual:
|
||||
-touch $(WXDIR)\docs\latex\wx\manual.tex
|
||||
|
||||
updatedocs: touchmanual alldocs
|
||||
|
||||
cleandocs:
|
||||
-erase $(DOCDIR)\winhelp\*.hlp
|
||||
-erase $(DOCDIR)\winhelp\*.cnt
|
||||
-erase $(DOCDIR)\html\wx\*.html
|
||||
-erase $(DOCDIR)\mshtml\wx\*.html
|
||||
-erase $(DOCDIR)\mshtml\wx\*.gif
|
||||
-erase $(DOCDIR)\mshtml\wx\wx.*
|
||||
-erase $(DOCDIR)\pdf\wx.rtf
|
||||
-erase $(DOCDIR)\latex\wx\wx.rtf
|
||||
-erase $(DOCDIR)\latex\wx\WX.PH
|
||||
-erase $(DOCDIR)\htmlhelp\wx.chm
|
||||
-erase $(DOCDIR)\htb\wx.htb
|
||||
|
||||
|
||||
# Only clean the online help, not PDF RTF
|
||||
cleanonlinehelp:
|
||||
-erase $(DOCDIR)\winhelp\wx.hlp
|
||||
-erase $(DOCDIR)\winhelp\wx.cnt
|
||||
-erase $(DOCDIR)\html\wx\*.html
|
||||
-erase $(DOCDIR)\latex\wx\wx.rtf
|
||||
-erase $(DOCDIR)\latex\wx\WX.PH
|
||||
-erase $(DOCDIR)\latex\wx\wx.hpj
|
||||
-erase $(DOCDIR)\htmlhelp\wx.chm
|
||||
-erase $(DOCDIR)\mshtml\wx\*.html
|
||||
-erase $(DOCDIR)\htb\wx.htb
|
||||
|
||||
|
||||
|
@@ -1,93 +0,0 @@
|
||||
rem Uncomment the next line to set the version; used also in wxWidgets.iss
|
||||
rem SET WXW_VER=2.9.1-rc1
|
||||
if (%WXW_VER%)==() SET WXW_VER=SVN
|
||||
|
||||
echo docs building for %WXW_VER%
|
||||
|
||||
rem This builds the docs in %WXWIN% in a number of formats
|
||||
rem and a clean inno setup in a second tree
|
||||
rem it uses a number of tools nmake, gnuwin32 zip & dos2unix, ghostscript, MS word, cvsNT
|
||||
rem cvs is in the path already from CVSNT install
|
||||
rem writes a log file in c:\
|
||||
|
||||
echo Building wxWidgets-%WXW_VER% docs... > c:\temp.log
|
||||
|
||||
set WXWIN=c:\wx\wxWidgets
|
||||
set DAILY=c:\daily
|
||||
set INNO=c:\wx\inno\wxWidgets
|
||||
|
||||
rem svn already in my path...
|
||||
set PATH=%PATH%;c:\wx\Gnu\bin;c:\progra~1\htmlhe~1;C:\PROGRA~1\INNOSE~1
|
||||
|
||||
echo %PATH% >> c:\temp.log
|
||||
rem add bakefile build...
|
||||
set PATH=%PATH%;C:\wx\Bakefile
|
||||
|
||||
SET >> c:\temp.log
|
||||
|
||||
|
||||
rem update wxwidgets (holds docs) and inno (cvs wxMSW setup.exe only)
|
||||
c:
|
||||
cd %WXWIN%
|
||||
svn cleanup >> c:\temp.log
|
||||
svn up >> c:\temp.log
|
||||
|
||||
rem now inno
|
||||
cd %INNO% >> c:\temp.log
|
||||
svn cleanup >> c:\temp.log
|
||||
svn up >> c:\temp.log
|
||||
|
||||
if exist include\wx\msw\setup.h del include\wx\msw\setup.h
|
||||
if exist include\wx\univ\setup.h del include\wx\univ\setup.h
|
||||
|
||||
rem for cygwin these need to be in unix format
|
||||
del configure
|
||||
del config.guess
|
||||
del config.sub
|
||||
svn up configure
|
||||
svn up config.guess
|
||||
svn up config.sub
|
||||
dos2unix configure
|
||||
dos2unix config.guess
|
||||
dos2unix config.sub
|
||||
|
||||
copy include\wx\msw\setup0.h include\wx\msw\setup.h
|
||||
copy include\wx\univ\setup0.h include\wx\univ\setup.h
|
||||
echo SVN update >> c:\temp.log
|
||||
|
||||
rem just build the formats not in the SVN to keep down the .#makefile...
|
||||
cd %INNO%\build\bakefiles
|
||||
del .bakefile_gen.state
|
||||
bakefile_gen -k -f dmars,dmars_smake,msevc4prj >> c:\temp.log
|
||||
|
||||
|
||||
|
||||
rem make and copy chm to inno
|
||||
rem Now create standalone copies of docs (chm and htb)
|
||||
cd %WXWIN%\docs\doxygen
|
||||
del out\html\*.html
|
||||
del out\html\*.htb
|
||||
del out\*.chm
|
||||
call regen chm
|
||||
|
||||
|
||||
cd %WXWIN%\docs\doxygen\out
|
||||
zip wxWidgets-%WXW_VER%-chm.zip wx.chm
|
||||
copy wxWidgets-%WXW_VER%-chm.zip %DAILY%
|
||||
cd html
|
||||
del *.dot
|
||||
del *.md5
|
||||
zip -r wx.htb *.*
|
||||
zip wxWidgets-%WXW_VER%-htb.zip wx.htb
|
||||
copy wxWidgets-%WXW_VER%-htb.zip %DAILY%
|
||||
|
||||
|
||||
mkdir %INNO%\docs\htmlhelp
|
||||
copy %WXWIN%\docs\doxygen\out\wx.chm \wx\inno\wx29b\docs\htmlhelp\wx.chm
|
||||
cd %WXWIN%\build\script
|
||||
iscc wxwidgets.iss >> c:\temp.log
|
||||
|
||||
echo docs built for %WXW_VER%
|
||||
echo docs built for %WXW_VER% >> c:\temp.log
|
||||
|
||||
|
@@ -1,37 +0,0 @@
|
||||
' This is saved as word macros; opens a pdf and writes out a ps file using
|
||||
' laserjet ps driver
|
||||
' Note that the output dir and hardcoded printer must exist
|
||||
|
||||
Sub wx_ps()
|
||||
swxWIN = Environ("WXWIN")
|
||||
do_ps swxWIN & "\docs\pdf\", "wx"
|
||||
do_ps swxWIN & "\utils\tex2rtf\docs", "tex2rtf"
|
||||
|
||||
bye_bye
|
||||
End Sub
|
||||
|
||||
Sub do_ps(mydir, myfile)
|
||||
' wx_ps Macro
|
||||
' Macro recorded 04/05/2005 by cje2
|
||||
'
|
||||
sDAILYIN = Environ("DAILY") & "\in\"
|
||||
ChangeFileOpenDirectory mydir
|
||||
Documents.Open FileName:=myfile & ".rtf", ConfirmConversions:=False, ReadOnly:= _
|
||||
False, AddToRecentFiles:=False, PasswordDocument:="", PasswordTemplate:= _
|
||||
"", Revert:=False, WritePasswordDocument:="", WritePasswordTemplate:="", _
|
||||
Format:=wdOpenFormatAuto
|
||||
ActivePrinter = "\\biolpc22\laserjet"
|
||||
ActiveDocument.Fields.Update
|
||||
Application.PrintOut FileName:="", Range:=wdPrintAllDocument, Item:= _
|
||||
wdPrintDocumentContent, Copies:=1, Pages:="", PageType:=wdPrintAllPages, _
|
||||
Collate:=True, Background:=False, PrintToFile:=True, PrintZoomColumn:=0, _
|
||||
PrintZoomRow:=0, PrintZoomPaperWidth:=0, PrintZoomPaperHeight:=0, _
|
||||
OutputFileName:=sDAILYIN & myfile & ".ps", Append:=False
|
||||
ActiveDocument.Close SaveChanges:=wdDoNotSaveChanges
|
||||
End Sub
|
||||
|
||||
Sub bye_bye()
|
||||
|
||||
Application.Quit SaveChanges:=wdDoNotSaveChanges
|
||||
|
||||
End Sub
|
@@ -1,63 +0,0 @@
|
||||
; Script generated by the Inno Setup Script Wizard.
|
||||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||
|
||||
#define INNODIR GetENV("INNO")
|
||||
|
||||
#if GetEnv("WXW_VER") == "CVS"
|
||||
#define INFOFILE GetENV("INNO") + "\BuildSVN.txt"
|
||||
#define WX_VERSION "SVN"
|
||||
#else
|
||||
#define INFOFILE GetENV("INNO") + "\docs\msw\install.txt"
|
||||
#define WX_VERSION GetENV("WXW_VER")
|
||||
#endif
|
||||
|
||||
#define SETUPFILENAME "wxMSW-" + GetENV("WXW_VER") + "-Setup"
|
||||
|
||||
|
||||
|
||||
[Setup]
|
||||
AppName=wxWidgets
|
||||
AppVerName=wxWidgets {#WX_VERSION}
|
||||
AppPublisher=wxWidgets
|
||||
AppPublisherURL=http://www.wxwidgets.org
|
||||
AppSupportURL=http://www.wxwidgets.org
|
||||
AppUpdatesURL=http://www.wxwidgets.org
|
||||
DefaultDirName={sd}\wxWidgets-{#WX_VERSION}
|
||||
DefaultGroupName=wxWidgets {#WX_VERSION}
|
||||
UsePreviousAppDir=no
|
||||
DisableProgramGroupPage=yes
|
||||
LicenseFile={#INNODIR}\docs\licence.txt
|
||||
InfoBeforeFile={#INNODIR}\docs\readme.txt
|
||||
InfoAfterFile={#INFOFILE}
|
||||
OutputDir=c:\daily
|
||||
OutputBaseFilename={#SETUPFILENAME}
|
||||
SetupIconFile={#INNODIR}\art\wxwin.ico
|
||||
Compression=lzma
|
||||
SolidCompression=yes
|
||||
|
||||
[Files]
|
||||
; source files
|
||||
Source: "{#INNODIR}\*"; DestDir: "{app}"; Excludes: ".cvsignore,cocoa,dfb,mac,gtk,gtk1,mgl,motif,msdos,os2,palmos,wxWindows.xcod*,x11,contrib,debian,distrib,docs,misc,tests,wxPython,*.pch,*.pch++,*.pchmm"; Flags: ignoreversion recursesubdirs createallsubdirs
|
||||
; docs and helpfile
|
||||
Source: "{#INNODIR}\docs\htmlhelp\*"; DestDir: "{app}\docs\htmlhelp\"; Flags: ignoreversion recursesubdirs createallsubdirs
|
||||
Source: "{#INNODIR}\docs\licence.txt"; DestDir: "{app}\docs\"; Flags: ignoreversion recursesubdirs createallsubdirs
|
||||
Source: "{#INNODIR}\docs\readme.txt"; DestDir: "{app}\docs\"; Flags: ignoreversion recursesubdirs createallsubdirs
|
||||
Source: "{#INNODIR}\docs\changes.txt"; DestDir: "{app}\docs\"; Flags: ignoreversion recursesubdirs createallsubdirs
|
||||
Source: "{#INNODIR}\docs\msw\install.txt"; DestDir: "{app}\docs\msw"; Flags: ignoreversion recursesubdirs createallsubdirs
|
||||
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
||||
|
||||
[INI]
|
||||
Filename: "{app}\wx.url"; Section: "InternetShortcut"; Key: "URL"; String: "http://www.wxwidgets.org"
|
||||
|
||||
[Icons]
|
||||
Name: "{group}\{cm:ProgramOnTheWeb,wxWidgets {#WX_VERSION}}"; Filename: "{app}\wx.url"
|
||||
Name: {group}\wxWidgets Manual; Filename: {app}\docs\htmlhelp\wx.chm; WorkingDir: {app}; IconIndex: 0; Flags: useapppaths
|
||||
Name: {group}\Changes; Filename: {app}\docs\changes.txt; WorkingDir: {app}; IconIndex: 0; Flags: useapppaths
|
||||
Name: {group}\Readme; Filename: {app}\docs\readme.txt; WorkingDir: {app}; IconIndex: 0; Flags: useapppaths
|
||||
Name: {group}\Compiling wxWidgets; Filename: {app}\docs\msw\install.txt; WorkingDir: {app}; IconIndex: 0; Flags: useapppaths
|
||||
Name: "{group}\Uninstall wxWidgets {#WX_VERSION}"; Filename: "{uninstallexe}"
|
||||
|
||||
|
||||
[UninstallDelete]
|
||||
Type: files; Name: "{app}\wx.url"
|
||||
|
Reference in New Issue
Block a user