mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-08-17 17:02:51 +08:00
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"
|
||||
|
||||
@@ -1,61 +0,0 @@
|
||||
#! /bin/sh
|
||||
#-----------------------------------------------------------------------------
|
||||
#-- Name: distrib/mac/pbsetup-sh
|
||||
#-- Purpose: Copy setup.h for ProjectBuilder
|
||||
#-- Author: Gilles Depeyrot
|
||||
#-- Modified by:
|
||||
#-- Created: 12.09.2003
|
||||
#-- RCS-ID: $Id$
|
||||
#-- Copyright: (c) 2003 Gilles Depeyrot
|
||||
#-- Licence: wxWindows licence
|
||||
#-----------------------------------------------------------------------------
|
||||
#
|
||||
# Usage: $0 SRCROOT SYMROOT
|
||||
#
|
||||
# Display errors/warnings in the correct format for ProjectBuilder parsing
|
||||
#
|
||||
if [ $# -ne 2 ] ; then
|
||||
echo "${0}:${LINENO}: error: Usage: ${0} SRCROOT SYMROOT"
|
||||
exit 1
|
||||
fi
|
||||
#
|
||||
# Create wx include directory if necessary
|
||||
#
|
||||
if [ ! -d "${2}/include/wx" ]; then
|
||||
mkdir -p "${2}/include/wx"
|
||||
if [ ! -d "${2}/include/wx" ] ; then
|
||||
echo "${0}:${LINENO}: error: unable to create directory \"${2}/include/wx\""
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
#
|
||||
# Copy stock setup0.h to setup.h if it doesn't exist
|
||||
# preserve user modifications made to setup.h
|
||||
#
|
||||
if [ ! -f "${1}/../include/wx/osx/setup.h" ]; then
|
||||
echo "${0}:${LINENO}: warning: copying \"include/wx/osx/setup0.h\" to \"include/wx/osx/setup.h\""
|
||||
echo "${0}:${LINENO}: warning: edit \"include/wx/osx/setup.h\" to choose the features you would like to compile wxWindows with[out]"
|
||||
cp "${1}/../include/wx/osx/setup0.h" "${1}/../include/wx/osx/setup.h"
|
||||
if [ ! -f "${1}/../include/wx/osx/setup.h" ]; then
|
||||
echo "${0}:${LINENO}: error: unable to create setup file \"${1}/../include/wx/osx/setup.h\""
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
#
|
||||
# Check that stock setup0.h is not newer than user setup.h
|
||||
#
|
||||
if [ "${1}/../include/wx/osx/setup0.h" -nt "${1}/../include/wx/osx/setup.h" ] ; then
|
||||
echo "${0}:${LINENO}: warning: \"include/wx/osx/setup0.h\" is more recent than \"include/wx/osx/setup.h\""
|
||||
echo "${0}:${LINENO}: warning: edit or replace \"include/wx/osx/setup.h\" to integrate changes"
|
||||
fi
|
||||
#
|
||||
# Copy user setup.h to build setup.h if the latter doesn't exist or is older
|
||||
#
|
||||
if [ ! -f "${2}/include/wx/setup.h" -o \
|
||||
"${1}/../include/wx/osx/setup.h" -nt "${2}/include/wx/setup.h" ] ; then
|
||||
cp "${1}/../include/wx/osx/setup.h" "${2}/include/wx/setup.h"
|
||||
if [ ! -f "${2}/include/wx/setup.h" ] ; then
|
||||
echo "${0}:${LINENO}: error: unable to create target setup file \"${2}/include/wx/setup.h\""
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
@@ -1,8 +0,0 @@
|
||||
PATH="/c/Program Files/Bakefile/src":$PATH
|
||||
cd $WXWIN
|
||||
# echo "<?xml version=\"1.0\"?><bakefile-gen><enable-formats>msevc4prj,dmars</enable-formats></bakefile-gen>" > build/bakefiles/Bakefiles.local.bkgen
|
||||
mkdir -p build/wince
|
||||
cd build/bakefiles
|
||||
echo $PATH
|
||||
bakefile_gen
|
||||
|
||||
@@ -1,110 +0,0 @@
|
||||
*.spec
|
||||
BuildCVS.txt
|
||||
*.m4
|
||||
autogen.sh
|
||||
configure
|
||||
config.guess
|
||||
config.sub
|
||||
configure.in
|
||||
setup.h.in
|
||||
install-sh
|
||||
mkinstalldirs
|
||||
wx-config.in
|
||||
wx-config-inplace.in
|
||||
version-script.in
|
||||
setup.h_vms
|
||||
regen
|
||||
|
||||
build/msw/config.*
|
||||
build/msw/makefile.*
|
||||
|
||||
src/common/*.cpp
|
||||
src/common/extended.c
|
||||
src/common/unzip.c
|
||||
src/common/unzip.h
|
||||
src/common/*.inc
|
||||
src/common/base.rc
|
||||
|
||||
src/msdos/*.cpp
|
||||
|
||||
src/msw/*.cpp
|
||||
src/msw/*.h
|
||||
src/msw/makefile.*
|
||||
src/msw/makebase.b32
|
||||
src/msw/makeuniv.b32
|
||||
src/msw/*.lst
|
||||
src/msw/*.def
|
||||
src/msw/*.inc
|
||||
src/msw/winestub.c
|
||||
src/msw/gsocket.c
|
||||
src/msw/gsockmsw.c
|
||||
src/msw/version.rc
|
||||
|
||||
src/msw/ole/*.cpp
|
||||
src/msw/*.prj
|
||||
|
||||
src/msw/wince/*.cpp
|
||||
src/msw/wince/*.c
|
||||
|
||||
src/unix/*.cpp
|
||||
src/unix/*.c
|
||||
|
||||
src/zlib/*.c
|
||||
src/zlib/*.h
|
||||
src/zlib/INDEX
|
||||
src/zlib/README
|
||||
src/zlib/ChangeLog
|
||||
src/zlib/configure
|
||||
src/zlib/*.txt
|
||||
src/zlib/makefile*
|
||||
src/zlib/*.com
|
||||
src/zlib/*.3
|
||||
|
||||
src/regex/COPYRIGHT
|
||||
src/regex/makefile*
|
||||
src/regex/README
|
||||
src/regex/WHATSNEW
|
||||
src/regex/mkh
|
||||
src/regex/*.h
|
||||
src/regex/*.ih
|
||||
src/regex/*.c
|
||||
src/regex/tests
|
||||
src/regex/regex.3
|
||||
src/regex/regex.7
|
||||
|
||||
include/wx/*.h
|
||||
include/wx/*.inl
|
||||
include/wx/*.cpp
|
||||
include/wx/protocol/*.h
|
||||
include/wx/wx_setup.vms
|
||||
include/wx/common/*.h
|
||||
include/wx/unix/*.h
|
||||
lib/dummy
|
||||
|
||||
include/wx/msw/*.h
|
||||
include/wx/msw/*.rc
|
||||
include/wx/msw/wx.manifest
|
||||
include/wx/msw/ole/*.h
|
||||
include/wx/msw/*.cur
|
||||
include/wx/msw/*.ico
|
||||
include/wx/msw/*.bmp
|
||||
|
||||
include/wx/msw/wince/*.h
|
||||
|
||||
include/wx/msdos/*.h
|
||||
|
||||
samples/console/testdata.fc
|
||||
samples/console/*.cpp
|
||||
samples/console/*.h
|
||||
samples/console/makefile*
|
||||
samples/console/*.rc
|
||||
samples/console/*.def
|
||||
samples/console/*.bmp
|
||||
samples/console/*.xpm
|
||||
samples/console/*.xbm
|
||||
samples/console/*.png
|
||||
samples/console/*.ico
|
||||
samples/console/*.txt
|
||||
samples/console/*.pro
|
||||
samples/console/*.bkl
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
src/bc32.ide
|
||||
samples/bc32.ide
|
||||
demos/bc32.ide
|
||||
@@ -1,5 +0,0 @@
|
||||
include/wx/cocoa/*.h
|
||||
src/cocoa/*.cpp
|
||||
src/cocoa/*.mm
|
||||
src/cocoa/*.r
|
||||
docs/cocoa/*.txt
|
||||
@@ -1,293 +0,0 @@
|
||||
contrib/build/animate/*.bkl
|
||||
contrib/build/animate/*.dsw
|
||||
contrib/build/animate/*.dsp
|
||||
contrib/build/animate/makefile*
|
||||
|
||||
contrib/build/deprecated/*.bkl
|
||||
contrib/build/deprecated/*.dsw
|
||||
contrib/build/deprecated/*.dsp
|
||||
contrib/build/deprecated/makefile*
|
||||
|
||||
contrib/build/fl/*.bkl
|
||||
contrib/build/fl/*.dsw
|
||||
contrib/build/fl/*.dsp
|
||||
contrib/build/fl/makefile*
|
||||
|
||||
contrib/build/foldbar/*.bkl
|
||||
contrib/build/foldbar/*.dsw
|
||||
contrib/build/foldbar/*.dsp
|
||||
contrib/build/foldbar/makefile*
|
||||
|
||||
contrib/build/gizmos/*.bkl
|
||||
contrib/build/gizmos/*.dsw
|
||||
contrib/build/gizmos/*.dsp
|
||||
contrib/build/gizmos/makefile*
|
||||
|
||||
contrib/build/mmedia/*.bkl
|
||||
contrib/build/mmedia/*.dsw
|
||||
contrib/build/mmedia/*.dsp
|
||||
contrib/build/mmedia/makefile*
|
||||
|
||||
contrib/build/net/*.bkl
|
||||
contrib/build/net/*.dsw
|
||||
contrib/build/net/*.dsp
|
||||
contrib/build/net/makefile*
|
||||
|
||||
contrib/build/ogl/*.bkl
|
||||
contrib/build/ogl/*.dsw
|
||||
contrib/build/ogl/*.dsp
|
||||
contrib/build/ogl/makefile*
|
||||
|
||||
contrib/build/plot/*.bkl
|
||||
contrib/build/plot/*.dsw
|
||||
contrib/build/plot/*.dsp
|
||||
contrib/build/plot/makefile*
|
||||
|
||||
contrib/build/stc/*.bkl
|
||||
contrib/build/stc/*.dsw
|
||||
contrib/build/stc/*.dsp
|
||||
contrib/build/stc/makefile*
|
||||
|
||||
contrib/build/svg/*.bkl
|
||||
contrib/build/svg/*.dsw
|
||||
contrib/build/svg/*.dsp
|
||||
contrib/build/svg/makefile*
|
||||
|
||||
contrib/configure.in
|
||||
contrib/configure
|
||||
|
||||
contrib/src/animate/*.cpp
|
||||
contrib/src/animate/*.h
|
||||
contrib/src/animate/readme.txt
|
||||
contrib/include/wx/animate/*.h
|
||||
|
||||
contrib/samples/animate/*.cpp
|
||||
contrib/samples/animate/*.h
|
||||
contrib/samples/animate/makefile*
|
||||
contrib/samples/animate/*.xbm
|
||||
contrib/samples/animate/*.xpm
|
||||
contrib/samples/animate/*.txt
|
||||
contrib/samples/animate/*.ico
|
||||
contrib/samples/animate/*.bmp
|
||||
contrib/samples/animate/*.rc
|
||||
contrib/samples/animate/*.gif
|
||||
contrib/samples/animate/anitest.dsp
|
||||
contrib/samples/animate/*.bkl
|
||||
|
||||
contrib/src/applet/*.cpp
|
||||
contrib/src/applet/*.h
|
||||
contrib/src/applet/make*
|
||||
contrib/include/wx/applet/*.h
|
||||
contrib/include/wx/applet/*.xpm
|
||||
contrib/include/wx/applet/*.bmp
|
||||
contrib/include/wx/applet/*.rc
|
||||
|
||||
contrib/samples/applet/*.cpp
|
||||
contrib/samples/applet/*.h
|
||||
contrib/samples/applet/makefile*
|
||||
contrib/samples/applet/*.xbm
|
||||
contrib/samples/applet/*.xpm
|
||||
contrib/samples/applet/*.txt
|
||||
contrib/samples/applet/*.html
|
||||
contrib/samples/applet/*.ico
|
||||
contrib/samples/applet/*.bmp
|
||||
contrib/samples/applet/*.rc
|
||||
contrib/samples/applet/*.wdr
|
||||
|
||||
contrib/src/deprecated/*.cpp
|
||||
contrib/src/deprecated/*.h
|
||||
contrib/src/deprecated/*.l
|
||||
contrib/src/deprecated/*.c
|
||||
contrib/src/deprecated/readme.txt
|
||||
contrib/include/wx/deprecated/*.h
|
||||
|
||||
contrib/samples/deprecated/proplist/*.cpp
|
||||
contrib/samples/deprecated/proplist/*.h
|
||||
contrib/samples/deprecated/proplist/makefile*
|
||||
contrib/samples/deprecated/proplist/*.xbm
|
||||
contrib/samples/deprecated/proplist/*.xpm
|
||||
contrib/samples/deprecated/proplist/*.txt
|
||||
contrib/samples/deprecated/proplist/*.ico
|
||||
contrib/samples/deprecated/proplist/*.bmp
|
||||
contrib/samples/deprecated/proplist/*.rc
|
||||
contrib/samples/deprecated/proplist/*.gif
|
||||
contrib/samples/deprecated/proplist/proplist.dsp
|
||||
contrib/samples/deprecated/proplist/*.bkl
|
||||
|
||||
contrib/samples/deprecated/resource/*.cpp
|
||||
contrib/samples/deprecated/resource/*.h
|
||||
contrib/samples/deprecated/resource/makefile*
|
||||
contrib/samples/deprecated/resource/*.xbm
|
||||
contrib/samples/deprecated/resource/*.xpm
|
||||
contrib/samples/deprecated/resource/*.txt
|
||||
contrib/samples/deprecated/resource/*.ico
|
||||
contrib/samples/deprecated/resource/*.bmp
|
||||
contrib/samples/deprecated/resource/*.rc
|
||||
contrib/samples/deprecated/resource/*.gif
|
||||
contrib/samples/deprecated/resource/resource.dsp
|
||||
contrib/samples/deprecated/resource/*.bkl
|
||||
|
||||
contrib/samples/deprecated/treelay/*.cpp
|
||||
contrib/samples/deprecated/treelay/*.h
|
||||
contrib/samples/deprecated/treelay/makefile*
|
||||
contrib/samples/deprecated/treelay/*.xbm
|
||||
contrib/samples/deprecated/treelay/*.xpm
|
||||
contrib/samples/deprecated/treelay/*.txt
|
||||
contrib/samples/deprecated/treelay/*.ico
|
||||
contrib/samples/deprecated/treelay/*.bmp
|
||||
contrib/samples/deprecated/treelay/*.rc
|
||||
contrib/samples/deprecated/treelay/*.gif
|
||||
contrib/samples/deprecated/treelay/treelay.dsp
|
||||
contrib/samples/deprecated/treelay/*.bkl
|
||||
|
||||
contrib/src/fl/*.cpp
|
||||
contrib/src/fl/*.h
|
||||
contrib/src/fl/files.lst
|
||||
contrib/include/wx/fl/*.h
|
||||
|
||||
contrib/samples/fl/makefile*
|
||||
contrib/samples/fl/bitmaps/*.bmp
|
||||
contrib/samples/fl/bitmaps/*.xpm
|
||||
contrib/samples/fl/*.cpp
|
||||
contrib/samples/fl/*.h
|
||||
contrib/samples/fl/*.xbm
|
||||
contrib/samples/fl/*.xpm
|
||||
contrib/samples/fl/*.txt
|
||||
contrib/samples/fl/*.ico
|
||||
contrib/samples/fl/*.bmp
|
||||
contrib/samples/fl/*.rc
|
||||
contrib/samples/fl/*.dsp
|
||||
contrib/samples/fl/*.bkl
|
||||
|
||||
contrib/src/gizmos/*.cpp
|
||||
contrib/src/gizmos/*.h
|
||||
contrib/src/gizmos/*.xpm
|
||||
contrib/src/gizmos/*.bmp
|
||||
contrib/include/wx/gizmos/*.h
|
||||
|
||||
contrib/samples/gizmos/dynsash/*.cpp
|
||||
contrib/samples/gizmos/dynsash/*.h
|
||||
contrib/samples/gizmos/dynsash/makefile*
|
||||
contrib/samples/gizmos/dynsash/*.xbm
|
||||
contrib/samples/gizmos/dynsash/*.xpm
|
||||
contrib/samples/gizmos/dynsash/*.txt
|
||||
contrib/samples/gizmos/dynsash/*.ico
|
||||
contrib/samples/gizmos/dynsash/*.bmp
|
||||
contrib/samples/gizmos/dynsash/*.rc
|
||||
contrib/samples/gizmos/dynsash/dynsash.dsp
|
||||
contrib/samples/gizmos/dynsash/*.bkl
|
||||
|
||||
contrib/samples/gizmos/dynsash_switch/*.cpp
|
||||
contrib/samples/gizmos/dynsash_switch/*.h
|
||||
contrib/samples/gizmos/dynsash_switch/makefile*
|
||||
contrib/samples/gizmos/dynsash_switch/*.xbm
|
||||
contrib/samples/gizmos/dynsash_switch/*.xpm
|
||||
contrib/samples/gizmos/dynsash_switch/*.txt
|
||||
contrib/samples/gizmos/dynsash_switch/*.ico
|
||||
contrib/samples/gizmos/dynsash_switch/*.bmp
|
||||
contrib/samples/gizmos/dynsash_switch/*.rc
|
||||
contrib/samples/gizmos/dynsash_switch/dynsash_switch.dsp
|
||||
contrib/samples/gizmos/dynsash_switch/*.bkl
|
||||
|
||||
contrib/samples/gizmos/editlbox/*.cpp
|
||||
contrib/samples/gizmos/editlbox/*.h
|
||||
contrib/samples/gizmos/editlbox/makefile*
|
||||
contrib/samples/gizmos/editlbox/*.xbm
|
||||
contrib/samples/gizmos/editlbox/*.xpm
|
||||
contrib/samples/gizmos/editlbox/*.txt
|
||||
contrib/samples/gizmos/editlbox/*.ico
|
||||
contrib/samples/gizmos/editlbox/*.bmp
|
||||
contrib/samples/gizmos/editlbox/*.rc
|
||||
contrib/samples/gizmos/editlbox/editlbox.dsp
|
||||
contrib/samples/gizmos/editlbox/*.bkl
|
||||
|
||||
contrib/samples/gizmos/led/*.cpp
|
||||
contrib/samples/gizmos/led/*.h
|
||||
contrib/samples/gizmos/led/makefile*
|
||||
contrib/samples/gizmos/led/*.xbm
|
||||
contrib/samples/gizmos/led/*.xpm
|
||||
contrib/samples/gizmos/led/*.txt
|
||||
contrib/samples/gizmos/led/*.ico
|
||||
contrib/samples/gizmos/led/*.bmp
|
||||
contrib/samples/gizmos/led/*.rc
|
||||
contrib/samples/gizmos/led/led.dsp
|
||||
contrib/samples/gizmos/led/*.bkl
|
||||
|
||||
contrib/samples/gizmos/multicell/*.cpp
|
||||
contrib/samples/gizmos/multicell/*.h
|
||||
contrib/samples/gizmos/multicell/makefile*
|
||||
contrib/samples/gizmos/multicell/*.xbm
|
||||
contrib/samples/gizmos/multicell/*.xpm
|
||||
contrib/samples/gizmos/multicell/*.txt
|
||||
contrib/samples/gizmos/multicell/*.ico
|
||||
contrib/samples/gizmos/multicell/*.bmp
|
||||
contrib/samples/gizmos/multicell/*.rc
|
||||
contrib/samples/gizmos/multicell/multicell.dsp
|
||||
contrib/samples/gizmos/multicell/*.bkl
|
||||
|
||||
contrib/samples/gizmos/splittree/*.cpp
|
||||
contrib/samples/gizmos/splittree/*.h
|
||||
contrib/samples/gizmos/splittree/makefile*
|
||||
contrib/samples/gizmos/splittree/*.xbm
|
||||
contrib/samples/gizmos/splittree/*.xpm
|
||||
contrib/samples/gizmos/splittree/*.txt
|
||||
contrib/samples/gizmos/splittree/*.ico
|
||||
contrib/samples/gizmos/splittree/*.bmp
|
||||
contrib/samples/gizmos/splittree/*.rc
|
||||
contrib/samples/gizmos/splittree/splittree.dsp
|
||||
contrib/samples/gizmos/splittree/*.bkl
|
||||
|
||||
contrib/src/plot/*.cpp
|
||||
contrib/src/plot/*.h
|
||||
contrib/include/wx/plot/*.h
|
||||
contrib/include/wx/plot/*.xpm
|
||||
contrib/include/wx/plot/*.bmp
|
||||
contrib/include/wx/plot/*.rc
|
||||
|
||||
contrib/samples/plot/*.cpp
|
||||
contrib/samples/plot/*.h
|
||||
contrib/samples/plot/makefile*
|
||||
contrib/samples/plot/*.xbm
|
||||
contrib/samples/plot/*.xpm
|
||||
contrib/samples/plot/*.txt
|
||||
contrib/samples/plot/*.ico
|
||||
contrib/samples/plot/*.bmp
|
||||
contrib/samples/plot/*.rc
|
||||
contrib/samples/plot/plot.dsp
|
||||
contrib/samples/plot/*.bkl
|
||||
|
||||
contrib/src/net/*.cpp
|
||||
contrib/src/net/*.h
|
||||
contrib/include/wx/net/*.h
|
||||
|
||||
contrib/src/svg/*.cpp
|
||||
contrib/src/svg/README.TXT
|
||||
contrib/include/wx/svg/*.h
|
||||
contrib/samples/svg/make*
|
||||
contrib/samples/svg/*.cpp
|
||||
contrib/samples/svg/*.h
|
||||
contrib/samples/svg/*.ico
|
||||
contrib/samples/svg/*.xpm
|
||||
contrib/samples/svg/*.bmp
|
||||
contrib/samples/svg/*.rc
|
||||
contrib/samples/svg/svgtest.dsp
|
||||
contrib/samples/svg/*.bkl
|
||||
contrib/samples/svg/bitmaps/*.xpm
|
||||
|
||||
contrib/src/foldbar/*.cpp
|
||||
contrib/src/foldbar/*.ico
|
||||
contrib/src/foldbar/*.xpm
|
||||
contrib/include/wx/foldbar/*.h
|
||||
contrib/samples/foldbar/extended/*.cpp
|
||||
contrib/samples/foldbar/extended/*.h
|
||||
contrib/samples/foldbar/extended/*.xpm
|
||||
contrib/samples/foldbar/extended/*.ico
|
||||
contrib/samples/foldbar/extended/*.rc
|
||||
contrib/samples/foldbar/extended/make*
|
||||
contrib/samples/foldbar/foldpanelbar/*.cpp
|
||||
contrib/samples/foldbar/foldpanelbar/*.h
|
||||
contrib/samples/foldbar/foldpanelbar/*.xpm
|
||||
contrib/samples/foldbar/foldpanelbar/*.ico
|
||||
contrib/samples/foldbar/foldpanelbar/*.rc
|
||||
contrib/samples/foldbar/foldpanelbar/make*
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,281 +0,0 @@
|
||||
@echo off
|
||||
|
||||
rem VZ: this is quick and _very_ dirty, to be replaced by a script directly
|
||||
rem parsing the files.txt and include/wx/version.h...
|
||||
|
||||
set VER=2.3.4
|
||||
set DEST=t:\wxBase-%VER%
|
||||
|
||||
mkdir %DEST%
|
||||
mkdir %DEST%\include
|
||||
mkdir %DEST%\include\wx
|
||||
mkdir %DEST%\include\wx\msw
|
||||
mkdir %DEST%\include\wx\protocol
|
||||
mkdir %DEST%\include\wx\unix
|
||||
mkdir %DEST%\locale
|
||||
mkdir %DEST%\samples
|
||||
mkdir %DEST%\samples\console
|
||||
mkdir %DEST%\src
|
||||
mkdir %DEST%\src\common
|
||||
mkdir %DEST%\src\msw
|
||||
mkdir %DEST%\src\regex
|
||||
mkdir %DEST%\src\unix
|
||||
mkdir %DEST%\src\zlib
|
||||
mkdir %DEST%\lib
|
||||
|
||||
chdir %WXWIN%
|
||||
|
||||
rem Copy the files to the root directory
|
||||
|
||||
copy /q configure.in %DEST%
|
||||
copy /q configure %DEST%
|
||||
copy /q wxwin.m4 %DEST%
|
||||
copy /q aclocal.m4 %DEST%
|
||||
copy /q config.sub %DEST%
|
||||
copy /q config.guess %DEST%
|
||||
copy /q install-sh %DEST%
|
||||
copy /q mkinstalldirs %DEST%
|
||||
copy /q wx-config.in %DEST%
|
||||
copy /q setup.h.in %DEST%
|
||||
copy /q Makefile.in %DEST%
|
||||
copy /q wxBase.spec %DEST%
|
||||
copy /q docs\changes.txt %DEST%\CHANGES.txt
|
||||
copy /q docs\licence.txt %DEST%\LICENCE.txt
|
||||
copy /q docs\base\readme.txt %DEST%\README.txt
|
||||
|
||||
rem Copy the project/make files
|
||||
|
||||
copy /q src\wxBase.dsp %DEST%\src\wxBase.dsp
|
||||
copy /q src\wxBase.dsw %DEST%\src\wxBase.dsw
|
||||
copy /q include\wx\msw\setup0.h %DEST%\include\wx\msw\setup.h
|
||||
copy /q src\makeb32.env %DEST%\src\makeb32.env
|
||||
copy /q src\makelib.b32 %DEST%\src\makelib.b32
|
||||
copy /q src\makeprog.b32 %DEST%\src\makeprog.b32
|
||||
copy /q src\msw\makebase.b32 %DEST%\src\msw\makebase.b32
|
||||
copy /q src\*.in %DEST%\src
|
||||
|
||||
rem Copy the sample
|
||||
|
||||
copy /q samples\console\console.cpp %DEST%\samples\console\console.cpp
|
||||
copy /q samples\console\console.dsp %DEST%\samples\console\console.dsp
|
||||
copy /q samples\console\makefile.b32 %DEST%\samples\console\makefile.b32
|
||||
copy /q samples\console\makefile.unx %DEST%\samples\console
|
||||
copy /q samples\console\Makefile.in %DEST%\samples\console
|
||||
copy /q samples\console\testdata.fc %DEST%\samples\console\testdata.fc
|
||||
|
||||
rem Copy regex and zlib files
|
||||
|
||||
copy /q src\regex\*.* %DEST%\src\regex
|
||||
copy /q src\zlib\*.* %DEST%\src\zlib
|
||||
|
||||
rem The files not in src/files.lst
|
||||
copy /q src\msw\dummy.cpp %DEST%\src\msw\dummy.cpp
|
||||
copy /q src\msw\dummydll.cpp %DEST%\src\msw\dummydll.cpp
|
||||
|
||||
copy /q src\common\execcmn.cpp %DEST%\src\common\execcmn.cpp
|
||||
copy /q src\common\unictabl.inc %DEST%\src\common\unictabl.inc
|
||||
copy /q src\common\unzip.h %DEST%\src\common\unzip.h
|
||||
|
||||
copy /q include\wx\msw\gsockmsw.h %DEST%\include\wx\msw\gsockmsw.h
|
||||
copy /q include\wx\msw\missing.h %DEST%\include\wx\msw\missing.h
|
||||
copy /q include\wx\msw\mslu.h %DEST%\include\wx\msw\mslu.h
|
||||
copy /q include\wx\msw\msvcrt.h %DEST%\include\wx\msw\msvcrt.h
|
||||
copy /q include\wx\msw\private.h %DEST%\include\wx\msw\private.h
|
||||
copy /q include\wx\msw\regconf.h %DEST%\include\wx\msw\regconf.h
|
||||
copy /q include\wx\msw\registry.h %DEST%\include\wx\msw\registry.h
|
||||
|
||||
rem The rest is generated from src/files.lst by pasting the ALL_SOURCES and
|
||||
rem ALL_HEADERS here and doing
|
||||
rem
|
||||
rem .,$s@^\s*\(.*\)/\([^ ]*\)\( \\\)\?$@copy /q src\\\1\\\2 %DEST%\\src\\\1\\\2
|
||||
rem
|
||||
rem and
|
||||
rem
|
||||
rem .,$s@/@\\@|exe "normal "|.,$s@^\s*\([^ ]*\)\( \\\)\?$@copy /q include\\wx\\\1 %DEST%\\include\\wx\\\1
|
||||
rem
|
||||
copy /q src\common\init.cpp %DEST%\src\common\init.cpp
|
||||
copy /q src\common\appcmn.cpp %DEST%\src\common\appcmn.cpp
|
||||
copy /q src\common\clntdata.cpp %DEST%\src\common\clntdata.cpp
|
||||
copy /q src\common\cmdline.cpp %DEST%\src\common\cmdline.cpp
|
||||
copy /q src\common\config.cpp %DEST%\src\common\config.cpp
|
||||
copy /q src\common\datetime.cpp %DEST%\src\common\datetime.cpp
|
||||
copy /q src\common\datstrm.cpp %DEST%\src\common\datstrm.cpp
|
||||
copy /q src\common\db.cpp %DEST%\src\common\db.cpp
|
||||
copy /q src\common\dbtable.cpp %DEST%\src\common\dbtable.cpp
|
||||
copy /q src\common\dircmn.cpp %DEST%\src\common\dircmn.cpp
|
||||
copy /q src\common\dynarray.cpp %DEST%\src\common\dynarray.cpp
|
||||
copy /q src\common\dynlib.cpp %DEST%\src\common\dynlib.cpp
|
||||
copy /q src\common\dynload.cpp %DEST%\src\common\dynload.cpp
|
||||
copy /q src\common\encconv.cpp %DEST%\src\common\encconv.cpp
|
||||
copy /q src\common\event.cpp %DEST%\src\common\event.cpp
|
||||
copy /q src\common\extended.c %DEST%\src\common\extended.c
|
||||
copy /q src\common\ffile.cpp %DEST%\src\common\ffile.cpp
|
||||
copy /q src\common\file.cpp %DEST%\src\common\file.cpp
|
||||
copy /q src\common\fileconf.cpp %DEST%\src\common\fileconf.cpp
|
||||
copy /q src\common\filefn.cpp %DEST%\src\common\filefn.cpp
|
||||
copy /q src\common\filename.cpp %DEST%\src\common\filename.cpp
|
||||
copy /q src\common\filesys.cpp %DEST%\src\common\filesys.cpp
|
||||
copy /q src\common\fontmap.cpp %DEST%\src\common\fontmap.cpp
|
||||
copy /q src\common\fs_inet.cpp %DEST%\src\common\fs_inet.cpp
|
||||
copy /q src\common\fs_mem.cpp %DEST%\src\common\fs_mem.cpp
|
||||
copy /q src\common\fs_zip.cpp %DEST%\src\common\fs_zip.cpp
|
||||
copy /q src\common\ftp.cpp %DEST%\src\common\ftp.cpp
|
||||
copy /q src\common\hash.cpp %DEST%\src\common\hash.cpp
|
||||
copy /q src\common\hashmap.cpp %DEST%\src\common\hashmap.cpp
|
||||
copy /q src\common\http.cpp %DEST%\src\common\http.cpp
|
||||
copy /q src\common\intl.cpp %DEST%\src\common\intl.cpp
|
||||
copy /q src\common\ipcbase.cpp %DEST%\src\common\ipcbase.cpp
|
||||
copy /q src\common\list.cpp %DEST%\src\common\list.cpp
|
||||
copy /q src\common\log.cpp %DEST%\src\common\log.cpp
|
||||
copy /q src\common\longlong.cpp %DEST%\src\common\longlong.cpp
|
||||
copy /q src\common\memory.cpp %DEST%\src\common\memory.cpp
|
||||
copy /q src\common\mimecmn.cpp %DEST%\src\common\mimecmn.cpp
|
||||
copy /q src\common\module.cpp %DEST%\src\common\module.cpp
|
||||
copy /q src\common\msgout.cpp %DEST%\src\common\msgout.cpp
|
||||
copy /q src\common\mstream.cpp %DEST%\src\common\mstream.cpp
|
||||
copy /q src\common\object.cpp %DEST%\src\common\object.cpp
|
||||
copy /q src\common\process.cpp %DEST%\src\common\process.cpp
|
||||
copy /q src\common\protocol.cpp %DEST%\src\common\protocol.cpp
|
||||
copy /q src\common\regex.cpp %DEST%\src\common\regex.cpp
|
||||
copy /q src\common\sckaddr.cpp %DEST%\src\common\sckaddr.cpp
|
||||
copy /q src\common\sckfile.cpp %DEST%\src\common\sckfile.cpp
|
||||
copy /q src\common\sckipc.cpp %DEST%\src\common\sckipc.cpp
|
||||
copy /q src\common\sckstrm.cpp %DEST%\src\common\sckstrm.cpp
|
||||
copy /q src\common\socket.cpp %DEST%\src\common\socket.cpp
|
||||
copy /q src\common\strconv.cpp %DEST%\src\common\strconv.cpp
|
||||
copy /q src\common\stream.cpp %DEST%\src\common\stream.cpp
|
||||
copy /q src\common\string.cpp %DEST%\src\common\string.cpp
|
||||
copy /q src\common\sysopt.cpp %DEST%\src\common\sysopt.cpp
|
||||
copy /q src\common\textbuf.cpp %DEST%\src\common\textbuf.cpp
|
||||
copy /q src\common\textfile.cpp %DEST%\src\common\textfile.cpp
|
||||
copy /q src\common\timercmn.cpp %DEST%\src\common\timercmn.cpp
|
||||
copy /q src\common\tokenzr.cpp %DEST%\src\common\tokenzr.cpp
|
||||
copy /q src\common\txtstrm.cpp %DEST%\src\common\txtstrm.cpp
|
||||
copy /q src\common\unzip.c %DEST%\src\common\unzip.c
|
||||
copy /q src\common\url.cpp %DEST%\src\common\url.cpp
|
||||
copy /q src\common\utilscmn.cpp %DEST%\src\common\utilscmn.cpp
|
||||
copy /q src\common\variant.cpp %DEST%\src\common\variant.cpp
|
||||
copy /q src\common\wfstream.cpp %DEST%\src\common\wfstream.cpp
|
||||
copy /q src\common\wxchar.cpp %DEST%\src\common\wxchar.cpp
|
||||
copy /q src\common\zipstrm.cpp %DEST%\src\common\zipstrm.cpp
|
||||
copy /q src\common\zstream.cpp %DEST%\src\common\zstream.cpp
|
||||
copy /q src\unix\dir.cpp %DEST%\src\unix\dir.cpp
|
||||
copy /q src\unix\gsocket.c %DEST%\src\unix\gsocket.c
|
||||
copy /q src\unix\mimetype.cpp %DEST%\src\unix\mimetype.cpp
|
||||
copy /q src\unix\snglinst.cpp %DEST%\src\unix\snglinst.cpp
|
||||
copy /q src\unix\threadpsx.cpp %DEST%\src\unix\threadpsx.cpp
|
||||
copy /q src\unix\utilsunx.cpp %DEST%\src\unix\utilsunx.cpp
|
||||
copy /q src\msw\dde.cpp %DEST%\src\msw\dde.cpp
|
||||
copy /q src\msw\dir.cpp %DEST%\src\msw\dir.cpp
|
||||
copy /q src\msw\gsocket.c %DEST%\src\msw\gsocket.c
|
||||
copy /q src\msw\gsockmsw.c %DEST%\src\msw\gsockmsw.c
|
||||
copy /q src\msw\main.cpp %DEST%\src\msw\main.cpp
|
||||
copy /q src\msw\mimetype.cpp %DEST%\src\msw\mimetype.cpp
|
||||
copy /q src\msw\regconf.cpp %DEST%\src\msw\regconf.cpp
|
||||
copy /q src\msw\registry.cpp %DEST%\src\msw\registry.cpp
|
||||
copy /q src\msw\snglinst.cpp %DEST%\src\msw\snglinst.cpp
|
||||
copy /q src\msw\thread.cpp %DEST%\src\msw\thread.cpp
|
||||
copy /q src\msw\utils.cpp %DEST%\src\msw\utils.cpp
|
||||
copy /q src\msw\utilsexc.cpp %DEST%\src\msw\utilsexc.cpp
|
||||
copy /q src\msw\volume.cpp %DEST%\src\msw\volume.cpp
|
||||
|
||||
copy /q include\wx\app.h %DEST%\include\wx\app.h
|
||||
copy /q include\wx\arrimpl.cpp %DEST%\include\wx\arrimpl.cpp
|
||||
copy /q include\wx\buffer.h %DEST%\include\wx\buffer.h
|
||||
copy /q include\wx\build.h %DEST%\include\wx\build.h
|
||||
copy /q include\wx\chkconf.h %DEST%\include\wx\chkconf.h
|
||||
copy /q include\wx\clntdata.h %DEST%\include\wx\clntdata.h
|
||||
copy /q include\wx\cmdline.h %DEST%\include\wx\cmdline.h
|
||||
copy /q include\wx\confbase.h %DEST%\include\wx\confbase.h
|
||||
copy /q include\wx\config.h %DEST%\include\wx\config.h
|
||||
copy /q include\wx\date.h %DEST%\include\wx\date.h
|
||||
copy /q include\wx\datetime.h %DEST%\include\wx\datetime.h
|
||||
copy /q include\wx\datetime.inl %DEST%\include\wx\datetime.inl
|
||||
copy /q include\wx\datstrm.h %DEST%\include\wx\datstrm.h
|
||||
copy /q include\wx\db.h %DEST%\include\wx\db.h
|
||||
copy /q include\wx\dbkeyg.h %DEST%\include\wx\dbkeyg.h
|
||||
copy /q include\wx\dbtable.h %DEST%\include\wx\dbtable.h
|
||||
copy /q include\wx\dde.h %DEST%\include\wx\dde.h
|
||||
copy /q include\wx\debug.h %DEST%\include\wx\debug.h
|
||||
copy /q include\wx\defs.h %DEST%\include\wx\defs.h
|
||||
copy /q include\wx\dir.h %DEST%\include\wx\dir.h
|
||||
copy /q include\wx\dynarray.h %DEST%\include\wx\dynarray.h
|
||||
copy /q include\wx\dynlib.h %DEST%\include\wx\dynlib.h
|
||||
copy /q include\wx\dynload.h %DEST%\include\wx\dynload.h
|
||||
copy /q include\wx\encconv.h %DEST%\include\wx\encconv.h
|
||||
copy /q include\wx\event.h %DEST%\include\wx\event.h
|
||||
copy /q include\wx\features.h %DEST%\include\wx\features.h
|
||||
copy /q include\wx\ffile.h %DEST%\include\wx\ffile.h
|
||||
copy /q include\wx\file.h %DEST%\include\wx\file.h
|
||||
copy /q include\wx\fileconf.h %DEST%\include\wx\fileconf.h
|
||||
copy /q include\wx\filefn.h %DEST%\include\wx\filefn.h
|
||||
copy /q include\wx\filename.h %DEST%\include\wx\filename.h
|
||||
copy /q include\wx\filesys.h %DEST%\include\wx\filesys.h
|
||||
copy /q include\wx\fontenc.h %DEST%\include\wx\fontenc.h
|
||||
copy /q include\wx\fontmap.h %DEST%\include\wx\fontmap.h
|
||||
copy /q include\wx\fs_inet.h %DEST%\include\wx\fs_inet.h
|
||||
copy /q include\wx\fs_mem.h %DEST%\include\wx\fs_mem.h
|
||||
copy /q include\wx\fs_zip.h %DEST%\include\wx\fs_zip.h
|
||||
copy /q include\wx\gsocket.h %DEST%\include\wx\gsocket.h
|
||||
copy /q include\wx\hash.h %DEST%\include\wx\hash.h
|
||||
copy /q include\wx\hashmap.h %DEST%\include\wx\hashmap.h
|
||||
copy /q include\wx\intl.h %DEST%\include\wx\intl.h
|
||||
copy /q include\wx\ioswrap.h %DEST%\include\wx\ioswrap.h
|
||||
copy /q include\wx\ipc.h %DEST%\include\wx\ipc.h
|
||||
copy /q include\wx\ipcbase.h %DEST%\include\wx\ipcbase.h
|
||||
copy /q include\wx\isql.h %DEST%\include\wx\isql.h
|
||||
copy /q include\wx\isqlext.h %DEST%\include\wx\isqlext.h
|
||||
copy /q include\wx\list.h %DEST%\include\wx\list.h
|
||||
copy /q include\wx\listimpl.cpp %DEST%\include\wx\listimpl.cpp
|
||||
copy /q include\wx\log.h %DEST%\include\wx\log.h
|
||||
copy /q include\wx\longlong.h %DEST%\include\wx\longlong.h
|
||||
copy /q include\wx\memconf.h %DEST%\include\wx\memconf.h
|
||||
copy /q include\wx\memory.h %DEST%\include\wx\memory.h
|
||||
copy /q include\wx\memtext.h %DEST%\include\wx\memtext.h
|
||||
copy /q include\wx\mimetype.h %DEST%\include\wx\mimetype.h
|
||||
copy /q include\wx\module.h %DEST%\include\wx\module.h
|
||||
copy /q include\wx\msgout.h %DEST%\include\wx\msgout.h
|
||||
copy /q include\wx\mstream.h %DEST%\include\wx\mstream.h
|
||||
copy /q include\wx\object.h %DEST%\include\wx\object.h
|
||||
copy /q include\wx\platform.h %DEST%\include\wx\platform.h
|
||||
copy /q include\wx\process.h %DEST%\include\wx\process.h
|
||||
copy /q include\wx\regex.h %DEST%\include\wx\regex.h
|
||||
copy /q include\wx\sckaddr.h %DEST%\include\wx\sckaddr.h
|
||||
copy /q include\wx\sckipc.h %DEST%\include\wx\sckipc.h
|
||||
copy /q include\wx\sckstrm.h %DEST%\include\wx\sckstrm.h
|
||||
copy /q include\wx\snglinst.h %DEST%\include\wx\snglinst.h
|
||||
copy /q include\wx\socket.h %DEST%\include\wx\socket.h
|
||||
copy /q include\wx\strconv.h %DEST%\include\wx\strconv.h
|
||||
copy /q include\wx\stream.h %DEST%\include\wx\stream.h
|
||||
copy /q include\wx\string.h %DEST%\include\wx\string.h
|
||||
copy /q include\wx\sysopt.h %DEST%\include\wx\sysopt.h
|
||||
copy /q include\wx\textbuf.h %DEST%\include\wx\textbuf.h
|
||||
copy /q include\wx\textfile.h %DEST%\include\wx\textfile.h
|
||||
copy /q include\wx\thread.h %DEST%\include\wx\thread.h
|
||||
copy /q include\wx\thrimpl.cpp %DEST%\include\wx\thrimpl.cpp
|
||||
copy /q include\wx\time.h %DEST%\include\wx\time.h
|
||||
copy /q include\wx\timer.h %DEST%\include\wx\timer.h
|
||||
copy /q include\wx\tokenzr.h %DEST%\include\wx\tokenzr.h
|
||||
copy /q include\wx\txtstrm.h %DEST%\include\wx\txtstrm.h
|
||||
copy /q include\wx\url.h %DEST%\include\wx\url.h
|
||||
copy /q include\wx\utils.h %DEST%\include\wx\utils.h
|
||||
copy /q include\wx\variant.h %DEST%\include\wx\variant.h
|
||||
copy /q include\wx\vector.h %DEST%\include\wx\vector.h
|
||||
copy /q include\wx\version.h %DEST%\include\wx\version.h
|
||||
copy /q include\wx\volume.h %DEST%\include\wx\volume.h
|
||||
copy /q include\wx\wfstream.h %DEST%\include\wx\wfstream.h
|
||||
copy /q include\wx\wx.h %DEST%\include\wx\wx.h
|
||||
copy /q include\wx\wxchar.h %DEST%\include\wx\wxchar.h
|
||||
copy /q include\wx\wxprec.h %DEST%\include\wx\wxprec.h
|
||||
copy /q include\wx\zipstrm.h %DEST%\include\wx\zipstrm.h
|
||||
copy /q include\wx\zstream.h %DEST%\include\wx\zstream.h
|
||||
copy /q include\wx\unix\gsockunx.h %DEST%\include\wx\unix\gsockunx.h
|
||||
copy /q include\wx\unix\mimetype.h %DEST%\include\wx\unix\mimetype.h
|
||||
copy /q include\wx\msw\dde.h %DEST%\include\wx\msw\dde.h
|
||||
copy /q include\wx\msw\gccpriv.h %DEST%\include\wx\msw\gccpriv.h
|
||||
copy /q include\wx\msw\mimetype.h %DEST%\include\wx\msw\mimetype.h
|
||||
copy /q include\wx\msw\winundef.h %DEST%\include\wx\msw\winundef.h
|
||||
copy /q include\wx\protocol\file.h %DEST%\include\wx\protocol\file.h
|
||||
copy /q include\wx\protocol\ftp.h %DEST%\include\wx\protocol\ftp.h
|
||||
copy /q include\wx\protocol\http.h %DEST%\include\wx\protocol\http.h
|
||||
copy /q include\wx\protocol\protocol.h %DEST%\include\wx\protocol\protocol.h
|
||||
@@ -1,326 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Create an Inno Setup installer on MSW. It requires MSYS.
|
||||
#
|
||||
# Example:
|
||||
#
|
||||
# distrib/msw/createsetup.sh
|
||||
#
|
||||
# Prerequisites:
|
||||
#
|
||||
# (1) Change VERSION to the desired wxWidgets version.
|
||||
# (2) Change APPDIR to the root of a wxWidgets distribution containing
|
||||
# this script.
|
||||
# (3) Change DESTDIR (if necessary) to a directory for creating the
|
||||
# the installer.
|
||||
# (4) Change SETUPCOMPILER to where Inno Setup is installed.
|
||||
# (6) Make sure 'unzip' is in your path.
|
||||
# (7) Make sure wxMSW-x.y.z.zip and wxWidgets-x.y.z-CHM.zip are in
|
||||
# the directory $DESTDIR.
|
||||
# (8) Run createsetup.sh.
|
||||
#
|
||||
# The necessary script files are:
|
||||
#
|
||||
# distrib/msw/createsetup.sh ; The main script
|
||||
# distrib/msw/wxwidgets_in.iss ; The input for making the .iss
|
||||
#
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
# The version
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
VERSION=2.7.2
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
# The application title
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
APPTITLE="wxWidgets"
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
# The application author (copyright holder)
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
AUTHOR="The wxWidgets Team"
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
# The application vendor (organisation)
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
VENDOR="wxWidgets"
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
# The top-level directory of the application source tree
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
APPDIR=c:/wx2dev/wxWindows
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
# The destination directory of the setup
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
DESTDIR=$APPDIR/deliver
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
# The temporary image directory to use when preparing the setup
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
SETUPIMAGEDIR=$DESTDIR/wxWidgets-$VERSION
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
# The location of the setup script
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
SETUPSCRIPTNAME=$APPDIR/distrib/msw/wxwidgets.iss
|
||||
SETUPSCRIPTNAME_IN=$APPDIR/distrib/msw/wxwidgets_in.iss
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
# The location of the zip files to be used to create the setup
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
WXMSWARCHIVE=$DESTDIR/wxMSW-$VERSION.zip
|
||||
WXCHMARCHIVE=$DESTDIR/wxWidgets-$VERSION-CHM.zip
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
# The locations of the readme and license files
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
READMEFILE=$SETUPIMAGEDIR/docs/readme.txt
|
||||
READMEAFTERFILE=$SETUPIMAGEDIR/docs/msw/install.txt
|
||||
LICENSEFILE=$SETUPIMAGEDIR/docs/licence.txt
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
# The location of the setup compiler
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
SETUPCOMPILER="c:/Program Files/Inno Setup 5/compil32.exe"
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
# Misc
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
# If your zip accepts Cygwin-style paths, then
|
||||
# use cygpath, else substitute echo
|
||||
CYGPATHPROG=cygpath
|
||||
#CYGPATHPROG=echo
|
||||
PROGNAME=$0
|
||||
SCRIPTDIR=$WXWIN/distrib/msw
|
||||
ZIPFLAGS=
|
||||
|
||||
# Seds the file represented by the 1st arg, using the expression passed as the 2nd arg.
|
||||
doreplace()
|
||||
{
|
||||
thefile=$1
|
||||
theexpr=$2
|
||||
|
||||
if [ -f $thefile ]; then
|
||||
sed -e "$theexpr" < $thefile > $thefile.tmp
|
||||
mv $thefile.tmp $thefile
|
||||
else
|
||||
echo "*** $thefile not found."
|
||||
fi
|
||||
}
|
||||
|
||||
unix2dosname()
|
||||
{
|
||||
echo $1 | sed -e "s/\//\\\\\\\/g" > /tmp/filename.tmp
|
||||
RETVALUE=`cat /tmp/filename.tmp`
|
||||
rm -f /tmp/filename.tmp
|
||||
}
|
||||
|
||||
unix2dosname2()
|
||||
{
|
||||
echo $1 | sed -e "s/\//\\\\/g" > /tmp/filename.tmp
|
||||
RETVALUE=`cat /tmp/filename.tmp`
|
||||
rm -f /tmp/filename.tmp
|
||||
}
|
||||
|
||||
doinit()
|
||||
{
|
||||
if [ "$VERBOSE" != "1" ]; then
|
||||
ZIPFLAGS=-q
|
||||
fi
|
||||
}
|
||||
|
||||
# Do the actual spin.
|
||||
|
||||
dospinsetup()
|
||||
{
|
||||
mkdir -p $DESTDIR
|
||||
cd $DESTDIR
|
||||
|
||||
echo Now in `pwd`
|
||||
|
||||
rm -f -r wxWidgets-$VERSION
|
||||
rm -f -r wxMSW-$VERSION
|
||||
|
||||
echo Unzipping the wxMSW files...
|
||||
|
||||
unzip $ZIPFLAGS $WXMSWARCHIVE
|
||||
|
||||
# This 'pause' is only necessary because on my system, the following 'mv' seems to fail
|
||||
# without it.
|
||||
echo About to rename wxMSW-$VERSION to wxWidgets-$VERSION. Press Return to continue.
|
||||
read ch
|
||||
|
||||
mv wxMSW-$VERSION wxWidgets-$VERSION
|
||||
|
||||
if [ ! -d wxWidgets-$VERSION ]; then
|
||||
echo *** Could not find wxWidgets-$VERSION: exiting.
|
||||
exit
|
||||
fi
|
||||
|
||||
echo Unzipping the CHM files...
|
||||
|
||||
cd wxWidgets-$VERSION
|
||||
unzip $ZIPFLAGS $WXCHMARCHIVE
|
||||
|
||||
echo Copying readme files...
|
||||
cp docs/msw/readme.txt README-MSW.txt
|
||||
cp docs/msw/install.txt INSTALL-MSW.txt
|
||||
cp docs/licence.txt LICENCE.txt
|
||||
cp docs/lgpl.txt COPYING.LIB
|
||||
cp docs/changes.txt CHANGES.txt
|
||||
cp docs/readme.txt README.txt
|
||||
|
||||
# Now cp some binary files to 'bin'
|
||||
# TODO
|
||||
# if [ ! -d bin ]; then
|
||||
# mkdir bin
|
||||
# fi
|
||||
# cp $APPDIR/bin/tex2rtf.exe bin
|
||||
# cp $APPDIR/bin/tex2rtf.chm bin
|
||||
# cp $APPDIR/bin/widgets.exe bin
|
||||
# cp $APPDIR/bin/life.exe bin
|
||||
# cp $APPDIR/demos/life/breeder.lif bin
|
||||
# cp $APPDIR/docs/htmlhelp/tex2rtf.chm bin
|
||||
|
||||
# Now replace %VERSION% with the real application version, and other
|
||||
# variables
|
||||
|
||||
cp $SETUPSCRIPTNAME_IN $SETUPSCRIPTNAME
|
||||
|
||||
echo Replacing variables in the setup script
|
||||
doreplace $SETUPSCRIPTNAME "s/%VERSION%/$VERSION/g"
|
||||
doreplace $SETUPSCRIPTNAME "s/%COPYRIGHTHOLDER%/$AUTHOR/g"
|
||||
doreplace $SETUPSCRIPTNAME "s/%VENDOR%/$VENDOR/g"
|
||||
|
||||
unix2dosname $READMEFILE
|
||||
doreplace $SETUPSCRIPTNAME "s;%READMEFILE%;$RETVALUE;g"
|
||||
|
||||
unix2dosname $READMEAFTERFILE
|
||||
doreplace $SETUPSCRIPTNAME "s;%READMEAFTERFILE%;$RETVALUE;g"
|
||||
|
||||
unix2dosname $LICENSEFILE
|
||||
doreplace $SETUPSCRIPTNAME "s;%LICENSEFILE%;$RETVALUE;g"
|
||||
|
||||
doreplace $SETUPSCRIPTNAME "s/%APPTITLE%/$APPTITLE/g"
|
||||
|
||||
unix2dosname $SETUPIMAGEDIR
|
||||
doreplace $SETUPSCRIPTNAME "s;%SOURCEDIR%;$RETVALUE;g"
|
||||
|
||||
unix2dosname $DESTDIR
|
||||
doreplace $SETUPSCRIPTNAME "s;%OUTPUTDIR%;$RETVALUE;g"
|
||||
|
||||
rm -f $DESTDIR/setup*.* $DESTDIR/wxMSW-$VERSION-Setup.exe
|
||||
|
||||
# Inno Setup complains if this step is not done
|
||||
unix2dos --unix2dos $SETUPSCRIPTNAME
|
||||
|
||||
# Now invoke INNO compiler on the new ISS file
|
||||
# First, make a DOS filename or Inno Setup will get confused.
|
||||
|
||||
unix2dosname2 $SETUPSCRIPTNAME
|
||||
DOSFILENAME=$RETVALUE
|
||||
|
||||
# Note: the double slash is Mingw32/MSYS convention for
|
||||
# denoting a switch, that must not be converted into
|
||||
# a path (otherwise /c = c:/)
|
||||
|
||||
cd `dirname $SETUPSCRIPTNAME`
|
||||
BASESCRIPTNAME=`basename $SETUPSCRIPTNAME`
|
||||
echo Invoking Inno Setup compiler on $BASESCRIPTNAME
|
||||
|
||||
"$SETUPCOMPILER" //cc $BASESCRIPTNAME
|
||||
|
||||
if [ ! -f $DESTDIR/setup.exe ]; then
|
||||
echo "*** Error - the setup.exe was not generated."
|
||||
exit
|
||||
fi
|
||||
|
||||
cd $DESTDIR
|
||||
mv setup.exe wxMSW-$VERSION-Setup.exe
|
||||
|
||||
echo If you saw no warnings or errors, $APPTITLE was successfully spun.
|
||||
echo
|
||||
}
|
||||
|
||||
# Get the archives
|
||||
getarchives()
|
||||
{
|
||||
echo Getting archives...
|
||||
cd $DESDIR
|
||||
curl http://biolpc22.york.ac.uk/pub/$VERSION/wxMSW-$VERSION.zip
|
||||
curl http://biolpc22.york.ac.uk/pub/$VERSION/wxWidgets-$VERSION-CHM.zip
|
||||
|
||||
# TODO
|
||||
#curl http://biolpc22.york.ac.uk/pub/$VERSION/wxWidgets-Windows-Binaries.zip
|
||||
|
||||
echo Done getting archives.
|
||||
}
|
||||
|
||||
# We can't use e.g. this:
|
||||
# ls `cat $SRC/distrib/msw/makefile.rsp` zip -@ -u $DEST/wxWidgets-$VERSION-gen.zip
|
||||
# because there's not enough space on the command line, plus we need to ignore the
|
||||
# blank lines.
|
||||
# So if we need to (not in this script so far) we do something like this instead:
|
||||
# expandlines $SRC/setup/files.rsp temp.txt
|
||||
# zip -@ `$CYGPATHPROG -w $DEST/archive.zip` < temp.txt
|
||||
|
||||
expandlines()
|
||||
{
|
||||
toexpand=$1
|
||||
outputfile=$2
|
||||
|
||||
rm -f $outputfile
|
||||
touch $outputfile
|
||||
for line in `cat $toexpand` ; do
|
||||
if [ $line != "" ]; then
|
||||
ls $line >> $outputfile
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
usage()
|
||||
{
|
||||
echo "Usage: $PROGNAME [ options ]" 1>&2
|
||||
echo Options:
|
||||
echo " --help Display this help message"
|
||||
echo " --verbose Verbose zip operation"
|
||||
echo.
|
||||
echo Note that options only override settings in $SCRIPTDIR/setup.var.
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Process command line options.
|
||||
|
||||
for i in "$@"; do
|
||||
case "$i" in
|
||||
--getarchives) GETARCHIVES=1 ;;
|
||||
--verbose) VERBOSE=1 ;;
|
||||
*)
|
||||
usage
|
||||
exit
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
|
||||
doinit
|
||||
|
||||
if [ "$GETARCHIVES" = "1" ]; then
|
||||
getarchives
|
||||
fi
|
||||
|
||||
dospinsetup
|
||||
|
||||
@@ -1,140 +0,0 @@
|
||||
include/wx*.pch*
|
||||
|
||||
include/wx/wx_cw.h
|
||||
include/wx/wx_cw_d.h
|
||||
include/wx/wx_cw_cm.h
|
||||
|
||||
src/*W7.xml
|
||||
src/cwcopysetup.bat
|
||||
src/cwdcopysetup.bat
|
||||
|
||||
src/common/cwy_tab.c
|
||||
src/common/cwlex_yy.c
|
||||
|
||||
src/jpeg/jpeg_CW_Prefix.h
|
||||
src/jpeg/*W7.xml
|
||||
src/tiff/tiff_CW_Prefix.h
|
||||
src/tiff/*W7.xml
|
||||
src/zlib/*W7.xml
|
||||
src/png/*W7.xml
|
||||
src/regex/*W7.xml
|
||||
|
||||
samples/artprov/*W7.xml
|
||||
samples/aui/*W7.xml
|
||||
samples/calendar/*W7.xml
|
||||
samples/caret/*W7.xml
|
||||
samples/checklst/*W7.xml
|
||||
samples/config/*W7.xml
|
||||
samples/controls/*W7.xml
|
||||
samples/db/*W7.xml
|
||||
samples/debugrpt/*W7.xml
|
||||
samples/dialogs/*W7.xml
|
||||
samples/dialup/*W7.xml
|
||||
samples/dnd/*W7.xml
|
||||
samples/docview/*W7.xml
|
||||
samples/docvwmdi/*W7.xml
|
||||
samples/dragimag/*W7.xml
|
||||
samples/drawing/*W7.xml
|
||||
samples/dynamic/*W7.xml
|
||||
samples/erase/*W7.xml
|
||||
samples/event/*W7.xml
|
||||
samples/exec/*W7.xml
|
||||
samples/font/*W7.xml
|
||||
samples/grid/*W7.xml
|
||||
samples/help/*W7.xml
|
||||
samples/html/*W7.xml
|
||||
samples/image/*W7.xml
|
||||
samples/internat/*W7.xml
|
||||
samples/joytest/*W7.xml
|
||||
samples/keyboard/*W7.xml
|
||||
samples/layout/*W7.xml
|
||||
samples/listbox/*W7.xml
|
||||
samples/listctrl/*W7.xml
|
||||
samples/mdi/*W7.xml
|
||||
samples/mediaplayer/*W7.xml
|
||||
samples/memcheck/*W7.xml
|
||||
samples/menu/*W7.xml
|
||||
samples/mfc/*W7.xml
|
||||
samples/minifram/*W7.xml
|
||||
samples/minimal/*W7.xml
|
||||
samples/multimon/*W7.xml
|
||||
samples/nativdlg/*W7.xml
|
||||
samples/notebook/*W7.xml
|
||||
samples/oleauto/*W7.xml
|
||||
samples/opengl/*W7.xml
|
||||
samples/ownerdrw/*W7.xml
|
||||
samples/png/*W7.xml
|
||||
samples/popup/*W7.xml
|
||||
samples/printing/*W7.xml
|
||||
samples/regtest/*W7.xml
|
||||
samples/rotate/*W7.xml
|
||||
samples/sashtest/*W7.xml
|
||||
samples/scroll/*W7.xml
|
||||
samples/shaped/*W7.xml
|
||||
samples/sockets/*W7.xml
|
||||
samples/splitter/*W7.xml
|
||||
samples/statbar/*W7.xml
|
||||
samples/tab/*W7.xml
|
||||
samples/taskbar/*W7.xml
|
||||
samples/text/*W7.xml
|
||||
samples/thread/*W7.xml
|
||||
samples/toolbar/*W7.xml
|
||||
samples/treectrl/*W7.xml
|
||||
samples/typetest/*W7.xml
|
||||
samples/validate/*W7.xml
|
||||
samples/widgets/*W7.xml
|
||||
samples/wizard/*W7.xml
|
||||
|
||||
utils/helpview/src/*W7.xml
|
||||
utils/tex2rtf/src/*W7.xml
|
||||
utils/hhp2cached/*W7.xml
|
||||
utils/helpgen/src/*W7.xml
|
||||
|
||||
demos/bombs/*W7.xml
|
||||
demos/dbbrowse/*W7.xml
|
||||
demos/forty/*W7.xml
|
||||
demos/fractal/*W7.xml
|
||||
demos/life/*W7.xml
|
||||
|
||||
src/xrc/*W7.xml
|
||||
samples/xrc/*W7.xml
|
||||
utils/wxrc/*W7.xml
|
||||
utils/convertrc/*W7.xml
|
||||
|
||||
contrib/src/foldbar/*W7.xml
|
||||
contrib/samples/foldbar/extended/*W7.xml
|
||||
contrib/samples/foldbar/foldpanelbar/*W7.xml
|
||||
contrib/src/ogl/*W7.xml
|
||||
contrib/samples/ogl/ogledit/*W7.xml
|
||||
contrib/samples/ogl/studio/*W7.xml
|
||||
contrib/src/mmedia/*W7.xml
|
||||
contrib/samples/mmedia/*W7.xml
|
||||
contrib/src/stc/*W7.xml
|
||||
contrib/samples/stc/*W7.xml
|
||||
contrib/src/canvas/*W7.xml
|
||||
contrib/samples/canvas/simple/*W7.xml
|
||||
contrib/samples/canvas/test/*W7.xml
|
||||
contrib/src/plot/*W7.xml
|
||||
contrib/samples/plot/*M?.xml
|
||||
contrib/samples/plot/*W7.xml
|
||||
contrib/src/gizmos/*W7.xml
|
||||
contrib/samples/gizmos/dynsash/*W7.xml
|
||||
contrib/samples/gizmos/dynsash_switch/*W7.xml
|
||||
contrib/samples/gizmos/editlbox/*W7.xml
|
||||
contrib/samples/gizmos/multicell/*W7.xml
|
||||
contrib/samples/gizmos/splittree/*W7.xml
|
||||
contrib/src/animate/*W7.xml
|
||||
contrib/samples/animate/*W7.xml
|
||||
contrib/src/fl/*W7.xml
|
||||
contrib/samples/fl/fl_demo1/*W7.xml
|
||||
contrib/samples/fl/fl_demo2/*W7.xml
|
||||
contrib/samples/fl/fl_sample1/*W7.xml
|
||||
contrib/samples/fl/fl_sample2/*W7.xml
|
||||
contrib/samples/fl/fl_sample3/*W7.xml
|
||||
contrib/src/net/*W7.xml
|
||||
|
||||
contrib/src/deprecated/*W7.xml
|
||||
contrib/samples/deprecated/resource/*W7.xml
|
||||
contrib/samples/deprecated/proplist/*W7.xml
|
||||
contrib/samples/deprecated/treelay/*W7.xml
|
||||
|
||||
@@ -1,270 +0,0 @@
|
||||
include/wx*.pch*
|
||||
|
||||
include/wx/wx_cw.h
|
||||
include/wx/wx_cw_d.h
|
||||
include/wx/wx_cw_cm.h
|
||||
|
||||
src/*M?.xml
|
||||
src/*.mcp
|
||||
src/cwcopysetup.bat
|
||||
src/cwdcopysetup.bat
|
||||
|
||||
src/common/cwy_tab.c
|
||||
src/common/cwlex_yy.c
|
||||
|
||||
src/jpeg/jpeg_CW_Prefix.h
|
||||
src/jpeg/*M?.xml
|
||||
src/jpeg/*.mcp
|
||||
src/tiff/tiff_CW_Prefix.h
|
||||
src/tiff/*M?.xml
|
||||
src/tiff/*.mcp
|
||||
src/zlib/*M?.xml
|
||||
src/zlib/*.mcp
|
||||
src/png/*M?.xml
|
||||
src/png/*.mcp
|
||||
src/regex/*M?.xml
|
||||
src/regex/*.mcp
|
||||
|
||||
src/xrc/*M?.xml
|
||||
src/xrc/*.mcp
|
||||
samples/xrc/*M?.xml
|
||||
samples/xrc/*.mcp
|
||||
utils/wxrc/*M?.xml
|
||||
utils/wxrc/*.mcp
|
||||
contrib/utils/convertrc/*M?.xml
|
||||
contrib/utils/convertrc/*.mcp
|
||||
|
||||
samples/artprov/*M?.xml
|
||||
samples/artprov/*.mcp
|
||||
samples/aui/*M?.xml
|
||||
samples/aui/*.mcp
|
||||
samples/calendar/*M?.xml
|
||||
samples/calendar/*.mcp
|
||||
samples/caret/*M?.xml
|
||||
samples/caret/*.mcp
|
||||
samples/checklst/*M?.xml
|
||||
samples/checklst/*.mcp
|
||||
samples/config/*M?.xml
|
||||
samples/config/*.mcp
|
||||
samples/controls/*M?.xml
|
||||
samples/controls/*.mcp
|
||||
samples/db/*M?.xml
|
||||
samples/db/*.mcp
|
||||
samples/debugrpt/*M?.xml
|
||||
samples/debugrpt/*.mcp
|
||||
samples/dialogs/*M?.xml
|
||||
samples/dialogs/*.mcp
|
||||
samples/dialup/*M?.xml
|
||||
samples/dialup/*.mcp
|
||||
samples/dnd/*M?.xml
|
||||
samples/dnd/*.mcp
|
||||
samples/docview/*M?.xml
|
||||
samples/docview/*.mcp
|
||||
samples/docvwmdi/*M?.xml
|
||||
samples/docvwmdi/*.mcp
|
||||
samples/dragimag/*M?.xml
|
||||
samples/dragimag/*.mcp
|
||||
samples/drawing/*M?.xml
|
||||
samples/drawing/*.mcp
|
||||
samples/dynamic/*M?.xml
|
||||
samples/dynamic/*.mcp
|
||||
samples/erase/*M?.xml
|
||||
samples/erase/*.mcp
|
||||
samples/event/*M?.xml
|
||||
samples/event/*.mcp
|
||||
samples/exec/*M?.xml
|
||||
samples/exec/*.mcp
|
||||
samples/font/*M?.xml
|
||||
samples/font/*.mcp
|
||||
samples/grid/*M?.xml
|
||||
samples/grid/*.mcp
|
||||
samples/help/*M?.xml
|
||||
samples/help/*.mcp
|
||||
samples/html/*M?.xml
|
||||
samples/html/*.mcp
|
||||
samples/image/*M?.xml
|
||||
samples/image/*.mcp
|
||||
samples/internat/*M?.xml
|
||||
samples/internat/*.mcp
|
||||
samples/joytest/*M?.xml
|
||||
samples/joytest/*.mcp
|
||||
samples/keyboard/*M?.xml
|
||||
samples/keyboard/*.mcp
|
||||
samples/layout/*M?.xml
|
||||
samples/layout/*.mcp
|
||||
samples/listbox/*M?.xml
|
||||
samples/listbox/*.mcp
|
||||
samples/listctrl/*M?.xml
|
||||
samples/listctrl/*.mcp
|
||||
samples/mdi/*M?.xml
|
||||
samples/mdi/*.mcp
|
||||
samples/mediaplayer/*M?.xml
|
||||
samples/mediaplayer/*.mcp
|
||||
samples/memcheck/*M?.xml
|
||||
samples/memcheck/*.mcp
|
||||
samples/menu/*M?.xml
|
||||
samples/menu/*.mcp
|
||||
samples/mfc/*M?.xml
|
||||
samples/mfc/*.mcp
|
||||
samples/minifram/*M?.xml
|
||||
samples/minifram/*.mcp
|
||||
samples/minimal/*M?.xml
|
||||
samples/minimal/*.mcp
|
||||
samples/multimon/*M?.xml
|
||||
samples/multimon/*.mcp
|
||||
samples/nativdlg/*M?.xml
|
||||
samples/nativdlg/*.mcp
|
||||
samples/notebook/*M?.xml
|
||||
samples/notebook/*.mcp
|
||||
samples/oleauto/*M?.xml
|
||||
samples/oleauto/*.mcp
|
||||
samples/opengl/*M?.xml
|
||||
samples/opengl/*.mcp
|
||||
samples/ownerdrw/*M?.xml
|
||||
samples/ownerdrw/*.mcp
|
||||
samples/png/*M?.xml
|
||||
samples/popup/*M?.xml
|
||||
samples/popup/*.mcp
|
||||
samples/png/*.mcp
|
||||
samples/printing/*M?.xml
|
||||
samples/printing/*.mcp
|
||||
samples/regtest/*M?.xml
|
||||
samples/regtest/*.mcp
|
||||
samples/rotate/*M?.xml
|
||||
samples/rotate/*.mcp
|
||||
samples/sashtest/*M?.xml
|
||||
samples/sashtest/*.mcp
|
||||
samples/scroll/*M?.xml
|
||||
samples/scroll/*.mcp
|
||||
samples/shaped/*M?.xml
|
||||
samples/shaped/*.mcp
|
||||
samples/sockets/*M?.xml
|
||||
samples/sockets/*.mcp
|
||||
samples/splitter/*M?.xml
|
||||
samples/splitter/*.mcp
|
||||
samples/statbar/*M?.xml
|
||||
samples/statbar/*.mcp
|
||||
samples/tab/*M?.xml
|
||||
samples/tab/*.mcp
|
||||
samples/taskbar/*M?.xml
|
||||
samples/taskbar/*.mcp
|
||||
samples/text/*M?.xml
|
||||
samples/text/*.mcp
|
||||
samples/thread/*M?.xml
|
||||
samples/thread/*.mcp
|
||||
samples/toolbar/*M?.xml
|
||||
samples/toolbar/*.mcp
|
||||
samples/treectrl/*M?.xml
|
||||
samples/treectrl/*.mcp
|
||||
samples/typetest/*M?.xml
|
||||
samples/typetest/*.mcp
|
||||
samples/validate/*M?.xml
|
||||
samples/validate/*.mcp
|
||||
samples/widgets/*M?.xml
|
||||
samples/widgets/*.mcp
|
||||
samples/wizard/*M?.xml
|
||||
samples/wizard/*.mcp
|
||||
|
||||
utils/helpview/src/*M?.xml
|
||||
utils/helpview/src/*.mcp
|
||||
|
||||
utils/tex2rtf/src/*M?.xml
|
||||
utils/tex2rtf/src/*.mcp
|
||||
|
||||
utils/hhp2cached/*M?.xml
|
||||
utils/hhp2cached/*.mcp
|
||||
|
||||
utils/HelpGen/src/*M?.xml
|
||||
utils/HelpGen/src/*.mcp
|
||||
|
||||
demos/bombs/*M?.xml
|
||||
demos/bombs/*.mcp
|
||||
|
||||
demos/dbbrowse/*M?.xml
|
||||
demos/dbbrowse/*.mcp
|
||||
|
||||
demos/forty/*M?.xml
|
||||
demos/forty/*.mcp
|
||||
|
||||
demos/fractal/*M?.xml
|
||||
demos/fractal/*.mcp
|
||||
|
||||
demos/life/*M?.xml
|
||||
demos/life/*.mcp
|
||||
|
||||
contrib/src/ogl/*M?.xml
|
||||
contrib/src/ogl/*.mcp
|
||||
|
||||
contrib/samples/ogl/ogledit/*M?.xml
|
||||
contrib/samples/ogl/ogledit/*.mcp
|
||||
contrib/samples/ogl/studio/*M?.xml
|
||||
contrib/samples/ogl/studio/*.mcp
|
||||
|
||||
contrib/src/mmedia/*M?.xml
|
||||
contrib/src/mmedia/*.mcp
|
||||
|
||||
contrib/samples/mmedia/*M?.xml
|
||||
contrib/samples/mmedia/*.mcp
|
||||
|
||||
contrib/src/stc/*M?.xml
|
||||
contrib/src/stc/*.mcp
|
||||
|
||||
contrib/samples/stc/*M?.xml
|
||||
contrib/samples/stc/*.mcp
|
||||
|
||||
contrib/src/foldbar/*M?.xml
|
||||
contrib/src/foldbar/*.mcp
|
||||
contrib/samples/foldbar/extended/*M?.xml
|
||||
contrib/samples/foldbar/extended/*.mcp
|
||||
contrib/samples/foldbar/foldpanelbar/*M?.xml
|
||||
contrib/samples/foldbar/foldpanelbar/*.mcp
|
||||
|
||||
contrib/src/plot/*M?.xml
|
||||
contrib/src/plot/*.mcp
|
||||
contrib/samples/plot/*M?.xml
|
||||
contrib/samples/plot/*.mcp
|
||||
|
||||
contrib/src/gizmos/*M?.xml
|
||||
contrib/src/gizmos/*.mcp
|
||||
contrib/samples/gizmos/dynsash/*M?.xml
|
||||
contrib/samples/gizmos/dynsash/*.mcp
|
||||
contrib/samples/gizmos/dynsash_switch/*M?.xml
|
||||
contrib/samples/gizmos/dynsash_switch/*.mcp
|
||||
contrib/samples/gizmos/editlbox/*M?.xml
|
||||
contrib/samples/gizmos/editlbox/*.mcp
|
||||
contrib/samples/gizmos/multicell/*M?.xml
|
||||
contrib/samples/gizmos/multicell/*.mcp
|
||||
contrib/samples/gizmos/splittree/*M?.xml
|
||||
contrib/samples/gizmos/splittree/*.mcp
|
||||
|
||||
contrib/src/animate/*M?.xml
|
||||
contrib/src/animate/*.mcp
|
||||
contrib/samples/animate/*M?.xml
|
||||
contrib/samples/animate/*.mcp
|
||||
|
||||
contrib/src/fl/*M?.xml
|
||||
contrib/src/fl/*.mcp
|
||||
contrib/samples/fl/fl_demo1/*M?.xml
|
||||
contrib/samples/fl/fl_demo1/*.mcp
|
||||
contrib/samples/fl/fl_demo2/*M?.xml
|
||||
contrib/samples/fl/fl_demo2/*.mcp
|
||||
contrib/samples/fl/fl_sample1/*M?.xml
|
||||
contrib/samples/fl/fl_sample1/*.mcp
|
||||
contrib/samples/fl/fl_sample2/*M?.xml
|
||||
contrib/samples/fl/fl_sample2/*.mcp
|
||||
contrib/samples/fl/fl_sample3/*M?.xml
|
||||
contrib/samples/fl/fl_sample3/*.mcp
|
||||
|
||||
contrib/src/net/*M?.xml
|
||||
contrib/src/net/*.mcp
|
||||
|
||||
contrib/src/deprecated/*M?.xml
|
||||
contrib/src/deprecated/*.mcp
|
||||
|
||||
contrib/samples/deprecated/proplist/*M?.xml
|
||||
contrib/samples/deprecated/proplist/*.mcp
|
||||
contrib/samples/deprecated/resource/*M?.xml
|
||||
contrib/samples/deprecated/resource/*.mcp
|
||||
contrib/samples/deprecated/treelay/*M?.xml
|
||||
contrib/samples/deprecated/treelay/*.mcp
|
||||
|
||||
@@ -1,42 +0,0 @@
|
||||
contrib/src/deprecated/*.cpp
|
||||
contrib/src/deprecated/dosyacc.c
|
||||
contrib/src/deprecated/doslex.c
|
||||
contrib/src/deprecated/cwlex_yy.c
|
||||
contrib/src/deprecated/cwy_tab.c
|
||||
contrib/include/wx/deprecated/*.h
|
||||
|
||||
contrib/samples/deprecated/proplist/*.cpp
|
||||
contrib/samples/deprecated/proplist/*.h
|
||||
contrib/samples/deprecated/proplist/*.def
|
||||
contrib/samples/deprecated/proplist/makefile*
|
||||
contrib/samples/deprecated/proplist/*.xbm
|
||||
contrib/samples/deprecated/proplist/*.xpm
|
||||
contrib/samples/deprecated/proplist/*.ico
|
||||
contrib/samples/deprecated/proplist/*.bmp
|
||||
contrib/samples/deprecated/proplist/*.rc
|
||||
contrib/samples/deprecated/proplist/*.pro
|
||||
|
||||
contrib/samples/deprecated/resource/*.cpp
|
||||
contrib/samples/deprecated/resource/*.h
|
||||
contrib/samples/deprecated/resource/*.def
|
||||
contrib/samples/deprecated/resource/*.rc
|
||||
contrib/samples/deprecated/resource/*.txt
|
||||
contrib/samples/deprecated/resource/*.wxr
|
||||
contrib/samples/deprecated/resource/makefile*
|
||||
contrib/samples/deprecated/resource/*.xbm
|
||||
contrib/samples/deprecated/resource/*.xpm
|
||||
contrib/samples/deprecated/resource/*.ico
|
||||
contrib/samples/deprecated/resource/*.pro
|
||||
|
||||
contrib/samples/deprecated/treelay/*.cpp
|
||||
contrib/samples/deprecated/treelay/*.h
|
||||
contrib/samples/deprecated/treelay/makefile*
|
||||
contrib/samples/deprecated/treelay/*.rc
|
||||
contrib/samples/deprecated/treelay/*.def
|
||||
contrib/samples/deprecated/treelay/*.ico
|
||||
contrib/samples/deprecated/treelay/*.xpm
|
||||
contrib/samples/deprecated/treelay/*.txt
|
||||
contrib/samples/deprecated/treelay/*.bmp
|
||||
contrib/samples/deprecated/treelay/*.pro
|
||||
|
||||
|
||||
@@ -1,139 +0,0 @@
|
||||
build/msw/config.dm?
|
||||
build/msw/makefile.dm?
|
||||
contrib/build/animate/makefile.dm?
|
||||
contrib/build/deprecated/makefile.dm?
|
||||
contrib/build/fl/makefile.dm?
|
||||
contrib/build/foldbar/makefile.dm?
|
||||
contrib/build/gizmos/makefile.dm?
|
||||
contrib/build/mmedia/makefile.dm?
|
||||
contrib/build/net/makefile.dm?
|
||||
contrib/build/ogl/makefile.dm?
|
||||
contrib/build/plot/makefile.dm?
|
||||
contrib/build/stc/makefile.dm?
|
||||
contrib/build/svg/makefile.dm?
|
||||
contrib/samples/animate/makefile.dm?
|
||||
contrib/samples/deprecated/proplist/makefile.dm?
|
||||
contrib/samples/deprecated/resource/makefile.dm?
|
||||
contrib/samples/deprecated/treelay/makefile.dm?
|
||||
contrib/samples/fl/makefile.dm?
|
||||
contrib/samples/gizmos/dynsash/makefile.dm?
|
||||
contrib/samples/gizmos/dynsash_switch/makefile.dm?
|
||||
contrib/samples/gizmos/editlbox/makefile.dm?
|
||||
contrib/samples/gizmos/led/makefile.dm?
|
||||
contrib/samples/gizmos/multicell/makefile.dm?
|
||||
contrib/samples/gizmos/splittree/makefile.dm?
|
||||
contrib/samples/mmedia/makefile.dm?
|
||||
contrib/samples/ogl/ogledit/makefile.dm?
|
||||
contrib/samples/ogl/studio/makefile.dm?
|
||||
contrib/samples/plot/makefile.dm?
|
||||
contrib/samples/stc/makefile.dm?
|
||||
contrib/samples/svg/makefile.dm?
|
||||
contrib/utils/convertrc/makefile.dm?
|
||||
contrib/samples/foldbar/extended/makefile.dm?
|
||||
contrib/samples/foldbar/foldpanelbar/makefile.dm?
|
||||
demos/bombs/makefile.dm?
|
||||
demos/dbbrowse/makefile.dm?
|
||||
demos/forty/makefile.dm?
|
||||
demos/fractal/makefile.dm?
|
||||
demos/life/makefile.dm?
|
||||
demos/makefile.dm?
|
||||
demos/poem/makefile.dm?
|
||||
samples/access/makefile.dm?
|
||||
samples/artprov/makefile.dm?
|
||||
samples/calendar/makefile.dm?
|
||||
samples/caret/makefile.dm?
|
||||
samples/checklst/makefile.dm?
|
||||
samples/config/makefile.dm?
|
||||
samples/console/makefile.dm?
|
||||
samples/controls/makefile.dm?
|
||||
samples/db/makefile.dm?
|
||||
samples/debugrpt/makefile.dm?
|
||||
samples/dialogs/makefile.dm?
|
||||
samples/dialup/makefile.dm?
|
||||
samples/display/makefile.dm?
|
||||
samples/dnd/makefile.dm?
|
||||
samples/docview/makefile.dm?
|
||||
samples/docvwmdi/makefile.dm?
|
||||
samples/dragimag/makefile.dm?
|
||||
samples/drawing/makefile.dm?
|
||||
samples/dynamic/makefile.dm?
|
||||
samples/erase/makefile.dm?
|
||||
samples/event/makefile.dm?
|
||||
samples/except/makefile.dm?
|
||||
samples/exec/makefile.dm?
|
||||
samples/font/makefile.dm?
|
||||
samples/grid/makefile.dm?
|
||||
samples/help/makefile.dm?
|
||||
samples/htlbox/makefile.dm?
|
||||
samples/html/about/makefile.dm?
|
||||
samples/html/help/makefile.dm?
|
||||
samples/html/helpview/makefile.dm?
|
||||
samples/html/htmlctrl/makefile.dm?
|
||||
samples/html/makefile.dm?
|
||||
samples/html/printing/makefile.dm?
|
||||
samples/html/test/makefile.dm?
|
||||
samples/html/virtual/makefile.dm?
|
||||
samples/html/widget/makefile.dm?
|
||||
samples/html/zip/makefile.dm?
|
||||
samples/image/makefile.dm?
|
||||
samples/internat/makefile.dm?
|
||||
samples/ipc/makefile.dm?
|
||||
samples/joytest/makefile.dm?
|
||||
samples/keyboard/makefile.dm?
|
||||
samples/layout/makefile.dm?
|
||||
samples/listbox/makefile.dm?
|
||||
samples/listctrl/makefile.dm?
|
||||
samples/makefile.dm?
|
||||
samples/mdi/makefile.dm?
|
||||
samples/mediaplayer/makefile.dm?
|
||||
samples/memcheck/makefile.dm?
|
||||
samples/menu/makefile.dm?
|
||||
samples/mfc/makefile.dm?
|
||||
samples/minifram/makefile.dm?
|
||||
samples/minimal/makefile.dm?
|
||||
samples/multimon/makefile.dm?
|
||||
samples/nativdlg/makefile.dm?
|
||||
samples/notebook/makefile.dm?
|
||||
samples/oleauto/makefile.dm?
|
||||
samples/opengl/cube/makefile.dm?
|
||||
samples/opengl/isosurf/makefile.dm?
|
||||
samples/opengl/makefile.dm?
|
||||
samples/opengl/penguin/makefile.dm?
|
||||
samples/ownerdrw/makefile.dm?
|
||||
samples/png/makefile.dm?
|
||||
samples/popup/makefile.dm?
|
||||
samples/printing/makefile.dm?
|
||||
samples/propsize/makefile.dm?
|
||||
samples/regtest/makefile.dm?
|
||||
samples/render/makefile.dm?
|
||||
samples/richedit/makefile.dm?
|
||||
samples/rotate/makefile.dm?
|
||||
samples/sashtest/makefile.dm?
|
||||
samples/scroll/makefile.dm?
|
||||
samples/shaped/makefile.dm?
|
||||
samples/sockets/makefile.dm?
|
||||
samples/sound/makefile.dm?
|
||||
samples/splash/makefile.dm?
|
||||
samples/splitter/makefile.dm?
|
||||
samples/statbar/makefile.dm?
|
||||
samples/tab/makefile.dm?
|
||||
samples/taskbar/makefile.dm?
|
||||
samples/text/makefile.dm?
|
||||
samples/thread/makefile.dm?
|
||||
samples/toolbar/makefile.dm?
|
||||
samples/treectrl/makefile.dm?
|
||||
samples/typetest/makefile.dm?
|
||||
samples/validate/makefile.dm?
|
||||
samples/vscroll/makefile.dm?
|
||||
samples/xrc/makefile.dm?
|
||||
samples/widgets/makefile.dm?
|
||||
samples/wizard/makefile.dm?
|
||||
tests/makefile.dm?
|
||||
utils/emulator/src/makefile.dm?
|
||||
utils/HelpGen/src/makefile.dm?
|
||||
utils/helpview/src/makefile.dm?
|
||||
utils/hhp2cached/makefile.dm?
|
||||
utils/makefile.dm?
|
||||
utils/tex2rtf/src/makefile.dm?
|
||||
utils/wxrc/makefile.dm?
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
docs/latex/wx/*.tex
|
||||
docs/latex/wx/*.sty
|
||||
docs/latex/wx/*.bib
|
||||
docs/latex/wx/*.hpj
|
||||
docs/latex/wx/*.ini
|
||||
docs/latex/wx/*.txt
|
||||
docs/latex/wx/*.cnt
|
||||
docs/latex/wx/*.eps
|
||||
docs/latex/wx/*.bmp
|
||||
docs/latex/wx/*.gif
|
||||
docs/latex/wx/*.wmf
|
||||
|
||||
utils/tex2rtf/docs/*.tex
|
||||
utils/tex2rtf/docs/*.txt
|
||||
utils/tex2rtf/docs/*.hpj
|
||||
utils/tex2rtf/docs/*.bib
|
||||
utils/tex2rtf/docs/*.ini
|
||||
utils/tex2rtf/docs/*.sty
|
||||
utils/tex2rtf/docs/*.bmp
|
||||
utils/tex2rtf/docs/*.shg
|
||||
utils/tex2rtf/docs/*.wmf
|
||||
utils/tex2rtf/docs/*.gif
|
||||
|
||||
contrib/docs/latex/svg/*.gif
|
||||
contrib/docs/latex/svg/*.tex
|
||||
contrib/docs/latex/svg/*.ini
|
||||
contrib/docs/latex/svg/*.sty
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
echo "dsp2dos [ver. 1.1]"
|
||||
echo "Convert wxWidgets workspaces from Unix to Dos format"
|
||||
echo " Author : Marco Cavallini (www.koansoftware.com)"
|
||||
echo "You need to build wxWidgets/distrib/msw/unix2dos.c for using it"
|
||||
unix2dos --unix2dos $WXWIN/src/wxBase.dsp
|
||||
unix2dos --unix2dos $WXWIN/src/wxBase.dsw
|
||||
unix2dos --unix2dos $WXWIN/src/wxUniv.dsp
|
||||
unix2dos --unix2dos $WXWIN/src/wxUniv.dsw
|
||||
unix2dos --unix2dos $WXWIN/src/wxWindows.dsp
|
||||
unix2dos --unix2dos $WXWIN/src/wxWindows.dsw
|
||||
unix2dos --unix2dos $WXWIN/src/jpeg/jpeg.dsp
|
||||
unix2dos --unix2dos $WXWIN/src/jpeg/jpeg.dsw
|
||||
unix2dos --unix2dos $WXWIN/src/png/png.dsp
|
||||
unix2dos --unix2dos $WXWIN/src/png/png.dsw
|
||||
unix2dos --unix2dos $WXWIN/src/regex/regex.dsp
|
||||
unix2dos --unix2dos $WXWIN/src/regex/regex.dsw
|
||||
unix2dos --unix2dos $WXWIN/src/tiff/tiff.dsp
|
||||
unix2dos --unix2dos $WXWIN/src/tiff/tiff.dsw
|
||||
unix2dos --unix2dos $WXWIN/src/zlib/zlib.dsp
|
||||
unix2dos --unix2dos $WXWIN/src/zlib/zlib.dsw
|
||||
unix2dos --unix2dos $WXWIN/src/msw/wince/wxBase.vcp
|
||||
unix2dos --unix2dos $WXWIN/src/msw/wince/wxBase.vcw
|
||||
unix2dos --unix2dos $WXWIN/src/msw/wince/wxWinCE.vcp
|
||||
unix2dos --unix2dos $WXWIN/src/msw/wince/wxWinCE.vcw
|
||||
unix2dos --unix2dos $WXWIN/src/msw/wince/mywxbase.vcp
|
||||
unix2dos --unix2dos $WXWIN/src/msw/wince/mywxbase.vcw
|
||||
echo "Done"
|
||||
echo ""
|
||||
@@ -1,15 +0,0 @@
|
||||
@echo off
|
||||
rem Expands wildcards in response file (arg 1) into output file (arg 2)
|
||||
rem Note: requires ls.exe from GNU-WIN32 distribution, renamed to ls2.exe.
|
||||
rem Correction: this is too slow, so we're using the built in 'dir'.
|
||||
|
||||
set newname=%temp\temp.tmp
|
||||
sed -e "s/\//\\/g" %1 > %newname
|
||||
|
||||
set len=%@LINES[%newname]
|
||||
rem set len=%@DEC[%len]
|
||||
do i = 0 to %len by 1
|
||||
set line=%@LINE[%newname,%i]
|
||||
if NOT "%line" == "" dir /FB %line >> %2
|
||||
enddo
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
docs/html/gettext/*.html
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
@echo off
|
||||
Rem Replace a string with another string in the given files.
|
||||
Rem The first argument is the string to be replaced.
|
||||
Rem The second argument is the replacement string.
|
||||
Rem The third argument is a file listing the files to be processed.
|
||||
|
||||
set keyword=%1
|
||||
set repl=%2
|
||||
set files=%3
|
||||
echo s/%keyword/%repl/g > script.tmp
|
||||
|
||||
call %wxwin\distrib\msw\expdwild.bat %3 list.tmp
|
||||
Rem goto end
|
||||
|
||||
set len=%@LINES[%files]
|
||||
do i = 0 to %len by 1
|
||||
set line=%@LINE[list.tmp,%i]
|
||||
if "%line" == "**EOF**" enddo
|
||||
rem echo Cmd: grep %keyword %line
|
||||
grep %keyword %line > size.tmp
|
||||
if "%@FILESIZE[size.tmp]" == "0" enddo
|
||||
sed -f script.tmp %line > file.tmp
|
||||
move file.tmp %line
|
||||
enddo
|
||||
erase script.tmp
|
||||
erase list.tmp
|
||||
erase size.tmp
|
||||
:end
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,37 +0,0 @@
|
||||
include/wx/glcanvas.h
|
||||
include/wx/motif/glcanvas.h
|
||||
include/wx/gtk/glcanvas.h
|
||||
include/wx/msw/glcanvas.h
|
||||
|
||||
src/motif/glcanvas.cpp
|
||||
src/gtk/glcanvas.cpp
|
||||
src/msw/glcanvas.cpp
|
||||
|
||||
samples/opengl/cube/*.cpp
|
||||
samples/opengl/cube/*.h
|
||||
samples/opengl/cube/*.rc
|
||||
samples/opengl/cube/*.ico
|
||||
samples/opengl/cube/*.xbm
|
||||
samples/opengl/cube/make*.*
|
||||
samples/opengl/cube/Makefile
|
||||
|
||||
samples/opengl/isosurf/*.cpp
|
||||
samples/opengl/isosurf/*.h
|
||||
samples/opengl/isosurf/*.rc
|
||||
samples/opengl/isosurf/*.ico
|
||||
samples/opengl/isosurf/*.xbm
|
||||
samples/opengl/isosurf/*.dat.gz
|
||||
samples/opengl/isosurf/make*.*
|
||||
samples/opengl/isosurf/Makefile
|
||||
|
||||
samples/opengl/penguin/*.cpp
|
||||
samples/opengl/penguin/*.c
|
||||
samples/opengl/penguin/*.h
|
||||
samples/opengl/penguin/*.rc
|
||||
samples/opengl/penguin/*.ico
|
||||
samples/opengl/penguin/*.xbm
|
||||
samples/opengl/penguin/*.xpm
|
||||
samples/opengl/penguin/make*.*
|
||||
samples/opengl/penguin/Makefile
|
||||
samples/opengl/penguin/penguin.lwo
|
||||
|
||||
@@ -1,26 +0,0 @@
|
||||
distrib/gtk/copy_src
|
||||
distrib/gtk/README.txt
|
||||
distrib/gtk/Setup
|
||||
|
||||
docs/gtk/*.html
|
||||
docs/gtk/*.txt
|
||||
docs/gtk/COPYING.LIB
|
||||
docs/gtk/makewxgtk
|
||||
|
||||
include/wx/gtk/*.h
|
||||
include/wx/gtk/*.xpm
|
||||
include/wx/gtk/gnome/*.h
|
||||
|
||||
include/wx/mac/corefoundation/*.h
|
||||
src/mac/corefoundation/*.cpp
|
||||
|
||||
src/gtk/files.lst
|
||||
src/gtk/*.cpp
|
||||
src/gtk/*.c
|
||||
src/gtk/*.xbm
|
||||
src/gtk/*.h
|
||||
src/gtk/gnome/*.cpp
|
||||
|
||||
misc/afm/*.afm
|
||||
misc/gs_afm/*.afm
|
||||
|
||||
@@ -1,42 +0,0 @@
|
||||
|
||||
[Icons]
|
||||
Name: {group}\Tex2rtf; Filename: {app}\bin\tex2rtf.exe; WorkingDir: {app}\bin; IconFilename: {app}\bin\tex2rtf.exe; IconIndex: 0
|
||||
Name: {group}\Tex2rtf Help; Filename: {app}\bin\tex2rtf.chm; WorkingDir: {app}\bin; 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}\wxWidgets Manual; Filename: {app}\docs\htmlhelp\wx.chm; WorkingDir: {app}; IconIndex: 0; Flags: useapppaths
|
||||
; Name: {group}\Tutorial; Filename: {app}\docs\pdf\wxTutorial.pdf; WorkingDir: {app}; IconIndex: 0; Flags: useapppaths
|
||||
Name: {group}\Document Index; Filename: {app}\docs\html\index.htm; WorkingDir: {app}; IconIndex: 0; Flags: useapppaths
|
||||
Name: {group}\Widgets Sample; Filename: {app}\bin\widgets.exe; WorkingDir: {app}\bin; IconFilename: {app}\bin\widgets.exe; IconIndex: 0
|
||||
Name: "{group}\Uninstall wxWidgets %VERSION%"; Filename: "{uninstallexe}"
|
||||
|
||||
[INI]
|
||||
|
||||
[Registry]
|
||||
Root: HKCU; SubKey: Environment; ValueName: WXWIN; ValueType: string; ValueData: {app}; Flags: createvalueifdoesntexist uninsdeletevalue
|
||||
; if bakefile is installed, tell it where to find wx presets
|
||||
Root: HKCU; SubKey: Environment; ValueName: BAKEFILE_PATHS; ValueType: expandsz; ValueData: %wxwin%/build/bakefiles/wxpresets; Flags: createvalueifdoesntexist uninsdeletevalue
|
||||
|
||||
[UninstallDelete]
|
||||
|
||||
[InstallDelete]
|
||||
|
||||
[Run]
|
||||
|
||||
[UninstallRun]
|
||||
|
||||
|
||||
; ==============================================
|
||||
; The lines below are used by ScriptMaker
|
||||
; They are not required by Inno Setup
|
||||
; DO NOT DELETE THEM or you may be unable to reload the script
|
||||
|
||||
;[ScriptSetup]
|
||||
;VerNum=2.5.2
|
||||
;InnoVer=1.3
|
||||
;AddVerTo=AppVerName
|
||||
;SetupFilename=setup.exe
|
||||
;OutputFolder=C:\wx2dev\wxWidgets\deliver
|
||||
;CopyrightText=Copyright © The wxWidgets Team
|
||||
|
||||
@@ -1,46 +0,0 @@
|
||||
; Inno Setup Script
|
||||
; Created with ScriptMaker Version 1.3.22
|
||||
; 29 January 2001 at 14:22
|
||||
|
||||
[Setup]
|
||||
MinVersion=4.0,4.0
|
||||
AppName=%APPTITLE% %VERSION%
|
||||
AppId=%APPTITLE%
|
||||
CreateUninstallRegKey=1
|
||||
UsePreviousAppDir=0
|
||||
UsePreviousGroup=0
|
||||
AppVersion=%VERSION%
|
||||
AppVerName=%APPTITLE% %VERSION%
|
||||
AppCopyright=Copyright © %COPYRIGHTHOLDER%
|
||||
BackColor=$FF0000
|
||||
BackColor2=$000000
|
||||
BackColorDirection=toptobottom
|
||||
WindowShowCaption=1
|
||||
WindowStartMaximized=1
|
||||
WindowVisible=1
|
||||
WindowResizable=1
|
||||
DirExistsWarning=auto
|
||||
UninstallFilesDir={app}
|
||||
DisableDirPage=0
|
||||
DisableStartupPrompt=0
|
||||
CreateAppDir=1
|
||||
DisableProgramGroupPage=0
|
||||
; AlwaysCreateUninstallIcon=1
|
||||
Uninstallable=1
|
||||
; UninstallIconName=Uninstall %APPTITLE% %VERSION%
|
||||
UninstallDisplayName=%APPTITLE% %VERSION%
|
||||
UninstallLogMode=Append
|
||||
DefaultDirName=c:\%APPTITLE%-%VERSION%
|
||||
DefaultGroupName=%APPTITLE% %VERSION%
|
||||
LicenseFile=%LICENSEFILE%
|
||||
InfoBeforeFile=%READMEFILE%
|
||||
InfoAfterFile=%READMEAFTERFILE%
|
||||
; MessagesFile=compiler:default.isl
|
||||
DiskSpanning=0
|
||||
; DiskSize=1457664
|
||||
; DiskClusterSize=512
|
||||
ReserveBytes=0
|
||||
UseSetupLdr=1
|
||||
SourceDir=%SOURCEDIR%
|
||||
OutputDir=%OUTPUTDIR%
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
src/jpeg/make*
|
||||
src/jpeg/jpeg.dsp
|
||||
src/jpeg/jpeg.dsw
|
||||
src/jpeg/*.c
|
||||
src/jpeg/*.h
|
||||
src/jpeg/README
|
||||
src/jpeg/*.doc
|
||||
src/jpeg/jconfig.bcc
|
||||
src/jpeg/jconfig.cfg
|
||||
src/jpeg/jconfig.dj
|
||||
src/jpeg/jconfig.mac
|
||||
src/jpeg/jconfig.manx
|
||||
src/jpeg/jconfig.mc6
|
||||
src/jpeg/jconfig.sas
|
||||
src/jpeg/jconfig.st
|
||||
src/jpeg/jconfig.vc
|
||||
src/jpeg/jconfig.vms
|
||||
src/jpeg/jconfig.wat
|
||||
src/jpeg/*.1
|
||||
src/jpeg/*.opt
|
||||
src/jpeg/change.log
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
@echo off
|
||||
Rem Make all files in a directory lower-case
|
||||
dir /B > %TEMP%\files.tmp
|
||||
|
||||
set len=%@LINES[%TEMP%\files.tmp]
|
||||
do i = 0 to %len by 1
|
||||
set line=%@LINE[%TEMP%\files.tmp,%i]
|
||||
ren %line% _%line%
|
||||
ren _%line% %@LOWER[%line%]
|
||||
enddo
|
||||
|
||||
@@ -1,77 +0,0 @@
|
||||
lib/dummy
|
||||
|
||||
docs/licence.txt
|
||||
docs/mac/*.txt
|
||||
docs/mac/*.hqx
|
||||
docs/mac/*.sh
|
||||
docs/mac/*.applescript
|
||||
docs/mac/*.diff
|
||||
|
||||
docs/metrowerks/*.txt
|
||||
docs/metrowerks/*.sh
|
||||
docs/metrowerks/mwar
|
||||
docs/metrowerks/mwpefar
|
||||
docs/metrowerks/wchar_t_panther_fix/machine/ansi.h
|
||||
|
||||
distrib/mac/*-sh
|
||||
|
||||
src/html/htmlctrl/webkit/*.mm
|
||||
|
||||
samples/Info.plist
|
||||
|
||||
samples/html/htmlctrl/*.cpp
|
||||
samples/html/htmlctrl/Makefile.in
|
||||
samples/html/htmlctrl/makefile.gcc
|
||||
samples/html/htmlctrl/makefile.vc
|
||||
samples/html/htmlctrl/makefile.wat
|
||||
samples/html/htmlctrl/makefile.bcc
|
||||
samples/html/htmlctrl/*.bkl
|
||||
|
||||
src/wxWindows.pbproj/project.pbxproj
|
||||
src/wxWindows.xcode/project.pbxproj
|
||||
|
||||
src/wxWindows.xcodeproj/project.pbxproj
|
||||
|
||||
src/mac/wxmac.icns
|
||||
|
||||
src/mac/carbon/*.cpp
|
||||
src/mac/carbon/*.mm
|
||||
src/mac/carbon/*.c
|
||||
src/mac/carbon/*.r
|
||||
src/mac/carbon/*.h
|
||||
src/mac/carbon/morefile/*.c
|
||||
src/mac/carbon/morefile/*.cpp
|
||||
src/mac/carbon/morefile/*.h
|
||||
src/mac/carbon/morefilex/*.c
|
||||
src/mac/carbon/morefilex/*.cpp
|
||||
src/mac/carbon/morefilex/*.h
|
||||
src/mac/carbon/Info.plist.in
|
||||
src/mac/carbon/wxmac.icns
|
||||
|
||||
src/mac/classic/*.cpp
|
||||
src/mac/classic/*.c
|
||||
src/mac/classic/*.r
|
||||
src/mac/classic/*.h
|
||||
src/mac/classic/morefile/*.c
|
||||
src/mac/classic/morefile/*.cpp
|
||||
src/mac/classic/morefile/*.h
|
||||
src/mac/classic/Info.plist.in
|
||||
src/mac/classic/wxmac.icns
|
||||
|
||||
src/mac/corefoundation/*.cpp
|
||||
|
||||
include/wx_pb.h
|
||||
include/wx/mac/*.h
|
||||
include/wx/mac/carbon/*.h
|
||||
include/wx/mac/carbon/private/*.h
|
||||
include/wx/mac/classic/*.h
|
||||
include/wx/mac/classic/private/*.h
|
||||
include/wx/mac/private/*.h
|
||||
|
||||
include/wx/mac/corefoundation/*.h
|
||||
|
||||
samples/minimal/minimal.pbproj/project.pbxproj
|
||||
samples/minimal/minimal.xcode/project.pbxproj
|
||||
samples/minimal/minimal.xcodeproj/project.pbxproj
|
||||
samples/minimal/Info.plist
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,270 +0,0 @@
|
||||
#! /bin/bash
|
||||
# makedist.sh
|
||||
#
|
||||
# Build wxWidgets 2 for Windows distribution.
|
||||
# This builds all required binaries and documents before calling
|
||||
# zipdist.sh to make the archives.
|
||||
#
|
||||
# To use this script, you need:
|
||||
#
|
||||
# - CygWin installation, for bash etc.
|
||||
# - VC++ 6 or higher, to compile the binaries
|
||||
# - WinHelp compiler, HTML Help compiler, Tex2RTF on your path
|
||||
# - WISE Install 5
|
||||
# - Word 97 (not tested with higher versions)
|
||||
# - Adobe Acrobat & Distiller
|
||||
#
|
||||
# Before running this script, you will need to:
|
||||
#
|
||||
# - update the readmes, change log, manual version etc.
|
||||
# - update version.h
|
||||
# - update distrib/msw/wisetop.txt, wisebott.txt with the correct version
|
||||
# number, plus any hard-wired wxWidgets paths
|
||||
# - test on a variety of compilers
|
||||
#
|
||||
# TODO:
|
||||
#
|
||||
# - generation of PDF (only PDF RTF generated so far)
|
||||
# - perhaps prompt the user to read the important release docs,
|
||||
# version.h, setup.h
|
||||
#
|
||||
# Julian Smart, October 2000
|
||||
|
||||
SRC=`cygpath -u $WXWIN`
|
||||
DEST=$SRC/deliver
|
||||
TMPDIR=`cygpath -u $TEMP`
|
||||
OK=1
|
||||
DOWISE=0
|
||||
DOPDF=0
|
||||
DOALL=1
|
||||
DOCSONLY=0
|
||||
WXWINONLY=0
|
||||
WISEONLY=0
|
||||
BINONLY=0
|
||||
PDFONLY=0
|
||||
|
||||
# For some reason, if we pipe output to egrep, we see output, but not otherwise.
|
||||
WARNINGS=": decorated name|: see reference|: see declaration|C4786|VC98\\\\INCLUDE|template<>"
|
||||
|
||||
setup_vars() {
|
||||
VCPATH="/c/Program Files/Microsoft Visual Studio/common/msdev98/bin:/c/Program Files/Microsoft Visual Studio/VC98/bin:DevStudio/VC/bin:/c/Program Files/Microsoft Visual Studio/common/tools:/c/Program Files/HTML Help Workshop"
|
||||
INCLUDE="C:\Program Files\Microsoft Visual Studio\VC98\ATL\INCLUDE;C:\Program Files\Microsoft Visual Studio\VC98\INCLUDE;C:\Program Files\Microsoft Visual Studio\VC98\MFC\INCLUDE;C:\Program Files\Tcl\include;C:\Program Files\HTML Help Workshop\include"
|
||||
LIB="C:\Program Files\Microsoft Visual Studio\VC98\lib;C:\Program Files\Microsoft Visual Studio\VC98\MFC\lib;C:\Program Files\Tcl\lib;C:\Program Files\HTML Help Workshop\lib"
|
||||
TCLHOME=C:/PROGRA~1/Tcl export TCLHOME
|
||||
PATH="$PATH:$VCPATH" export PATH
|
||||
export INCLUDE LIB
|
||||
|
||||
WORDEXE="/c/Program Files/Microsoft Office/Office/WINWORD.EXE"
|
||||
}
|
||||
|
||||
check_compile() {
|
||||
egrep ": error C|fatal error" $TMPDIR/buildlog.txt > $TMPDIR/errorlog.txt
|
||||
if [ -s $TMPDIR/errorlog.txt ]; then
|
||||
echo Did not build $0 successfully.
|
||||
OK=0
|
||||
fi
|
||||
}
|
||||
|
||||
check_files() {
|
||||
if [ ! -d "$SRC" ]; then
|
||||
echo "$SRC" does not exist.
|
||||
OK=0
|
||||
fi
|
||||
|
||||
if [ ! -d "$SRC/deliver" ]; then
|
||||
mkdir "$SRC/deliver"
|
||||
fi
|
||||
|
||||
if [ ! -e $SRC/include/wx/msw/setup.h ]; then
|
||||
cp "$SRC/include/wx/msw/setup0.h" "$SRC/include/wx/msw/setup.h"
|
||||
echo setup0.h has been copied to setup.h.
|
||||
echo You must now edit this file to restore release settings,
|
||||
echo then run this script again.
|
||||
OK=0
|
||||
notepad.exe "$SRC/include/wx/msw/setup.h"
|
||||
fi
|
||||
if [ ! -d "$SRC/bin" ]; then
|
||||
mkdir "$SRC/bin"
|
||||
fi
|
||||
if [ ! -e "$SRC/bin/DBGVIEW.EXE" ]; then
|
||||
echo Please put DBGVIEW.EXE, DBGVIEW.CNT, DBGVIEW.HLP into $SRC/bin
|
||||
echo and run the script again.
|
||||
OK=0
|
||||
fi
|
||||
}
|
||||
|
||||
build_docs() {
|
||||
cd "$SRC/src/msw"
|
||||
echo "---------------------------------"
|
||||
echo "Building wxWidgets documents"
|
||||
nmake -f makefile.vc cleandocs docs
|
||||
|
||||
cd "$SRC/utils/tex2rtf/src"
|
||||
nmake -f makefile.vc html htmlhelp htb hlp pdfrtf
|
||||
|
||||
cd "$SRC/contrib/src/ogl"
|
||||
nmake -f makefile.vc html htmlhelp htb hlp pdfrtf
|
||||
|
||||
cd "$SRC/contrib/src/mmedia"
|
||||
nmake -f makefile.vc html htmlhelp htb hlp pdfrtf
|
||||
}
|
||||
|
||||
# TODO: Make PDF via Word, if Word and Adobe Acrobat are present.
|
||||
# This has to be interactive at present.
|
||||
build_pdf() {
|
||||
echo "---------------------------------"
|
||||
echo "Building wxWidgets PDF documents"
|
||||
if [ -e "$WORDEXE" ]; then
|
||||
"$WORDEXE" "$WXWIN\\docs\\pdf\\wx.rtf"
|
||||
"$WORDEXE" "$WXWIN\\docs\\pdf\\tex2rtf.rtf"
|
||||
"$WORDEXE" "$WXWIN\\contrib\\docs\\pdf\\ogl.rtf"
|
||||
"$WORDEXE" "$WXWIN\\contrib\\docs\\mmedia\\ogl.rtf"
|
||||
else
|
||||
echo MS Word not present. Not doing PDF build.
|
||||
fi
|
||||
}
|
||||
|
||||
# Build wxWidgets
|
||||
build_wxwin_vc() {
|
||||
echo "---------------------------------"
|
||||
echo "Building wxWidgets using VC++"
|
||||
cd "$SRC/src"
|
||||
echo Building wxWidgets Release library in `pwd`
|
||||
echo Command: msdev wxvc.dsw /useenv /make "wxvc - Win32 Release" /rebuild
|
||||
msdev wxvc.dsw /useenv /make "wxvc - Win32 Release" /rebuild | egrep -v "$WARNINGS"
|
||||
}
|
||||
|
||||
build_tex2rtf() {
|
||||
echo "---------------------------------"
|
||||
echo "Building Tex2RTF using VC++"
|
||||
cd "$SRC/utils/tex2rtf/src"
|
||||
msdev Tex2RTFVC.dsw /useenv /make "Tex2RTFVC - Win32 Release" /rebuild | egrep -v "$WARNINGS" | tee $TMPDIR/buildlog.txt
|
||||
|
||||
check_compile "Tex2RTF"
|
||||
}
|
||||
|
||||
build_life() {
|
||||
echo "---------------------------------"
|
||||
echo "Building Life! using VC++"
|
||||
cd "$SRC/demos/life"
|
||||
msdev LifeVC.dsw /useenv /make "LifeVC - Win32 Release" /rebuild | egrep -v "$WARNINGS" | tee $TMPDIR/buildlog.txt
|
||||
|
||||
check_compile "Life! Demo"
|
||||
}
|
||||
|
||||
build_executables() {
|
||||
build_tex2rtf
|
||||
build_life
|
||||
}
|
||||
|
||||
copy_files() {
|
||||
cp "$SRC/utils/tex2rtf/src/Release/tex2rtf.exe" "$SRC/bin"
|
||||
cp "$SRC/docs/winhelp/tex2rtf.hlp" "$SRC/docs/winhelp/tex2rtf.cnt" "$SRC/bin"
|
||||
|
||||
cp "$SRC/demos/life/Release/life.exe" "$SRC/demos/life/breeder.lif" "$SRC/bin"
|
||||
}
|
||||
|
||||
# Process command line options.
|
||||
for i in "$@"; do
|
||||
case "$i" in
|
||||
--wise) DOWISE=1 ;;
|
||||
--pdf) DOPDF=1 ;;
|
||||
--wise-only)
|
||||
WISEONLY=1
|
||||
DOWISE=1
|
||||
DOALL=0
|
||||
;;
|
||||
--docs-only)
|
||||
DOCSONLY=1
|
||||
DOALL=0
|
||||
;;
|
||||
--bin-only)
|
||||
BINONLY=1
|
||||
DOALL=0
|
||||
;;
|
||||
--wxwin-only)
|
||||
WXWINONLY=1
|
||||
DOALL=0
|
||||
;;
|
||||
--pdf-only)
|
||||
PDFONLY=1
|
||||
DOPDF=1
|
||||
DOALL=0
|
||||
;;
|
||||
*)
|
||||
echo Usage: $0 "[ options ]"
|
||||
echo Generates documentation and binaries for creating a distribution,
|
||||
echo and optionally generates the zip/setup.exe distribution by
|
||||
echo calling zipdist.sh.
|
||||
echo
|
||||
echo Options:
|
||||
echo " --help Display this help message"
|
||||
echo " --wise Additonally, build zips and setup.exe"
|
||||
echo " --pdf Additionally, try to generate PDF"
|
||||
echo " --wise-only Only do zip/setup phase"
|
||||
echo " --wxwin-only Only do wxWin lib building phase"
|
||||
echo " --docs-only Only do docs building phase"
|
||||
echo " --pdf-only Only do PDF building phase"
|
||||
echo " --bin-only Only do .exe building phase"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
mkdir -p $SRC/docs/pdf
|
||||
mkdir -p $SRC/docs/html
|
||||
mkdir -p $SRC/docs/htmlhelp
|
||||
mkdir -p $SRC/docs/htb
|
||||
mkdir -p $SRC/docs/winhelp
|
||||
mkdir -p $SRC/contrib/docs/pdf
|
||||
mkdir -p $SRC/contrib/docs/html
|
||||
mkdir -p $SRC/contrib/docs/htmlhelp
|
||||
mkdir -p $SRC/contrib/docs/htb
|
||||
mkdir -p $SRC/contrib/docs/winhelp
|
||||
|
||||
setup_vars
|
||||
check_files
|
||||
|
||||
if [ "$OK" = "1" ]; then
|
||||
if [ "$DOCSONLY" = "1" ] || [ "$DOALL" = "1" ]; then
|
||||
build_docs
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$OK" = "1" ] && [ "$DOPDF" = "1" ]; then
|
||||
if [ "$PDFONLY" = "1" ] || [ "$DOALL" = "1" ]; then
|
||||
build_pdf
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$OK" = "1" ]; then
|
||||
if [ "$WXWINONLY" = "1" ] || [ "$DOALL" = "1" ]; then
|
||||
build_wxwin_vc
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$OK" = "1" ]; then
|
||||
if [ "$BINONLY" = "1" ] || [ "$DOALL" = "1" ]; then
|
||||
build_executables
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$OK" = "1" ]; then
|
||||
copy_files
|
||||
fi
|
||||
|
||||
if [ "$OK" = "1" ] && [ "$DOWISE" = "1" ]; then
|
||||
if [ "$WISEONLY" = "1" ] || [ "$DOALL" = "1" ]; then
|
||||
$SRC/distrib/msw/zipdist.sh --wise
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$OK" = "1" ]; then
|
||||
echo Finished successfully.
|
||||
else
|
||||
echo Finished unsuccessfully. There were errors.
|
||||
fi
|
||||
|
||||
echo Press return to continue.
|
||||
read dummy
|
||||
|
||||
@@ -1,200 +0,0 @@
|
||||
Makefile.in
|
||||
src/regex/Makefile.in
|
||||
locale/Makefile
|
||||
tests/Makefile.in
|
||||
samples/Makefile.in
|
||||
samples/access/Makefile.in
|
||||
samples/artprov/Makefile.in
|
||||
samples/aui/Makefile.in
|
||||
samples/calendar/Makefile.in
|
||||
samples/caret/Makefile.in
|
||||
samples/checklst/Makefile.in
|
||||
samples/config/Makefile.in
|
||||
samples/console/Makefile.in
|
||||
samples/controls/Makefile.in
|
||||
samples/db/Makefile.in
|
||||
samples/debugrpt/Makefile.in
|
||||
samples/dialogs/Makefile.in
|
||||
samples/dnd/Makefile.in
|
||||
samples/docview/Makefile.in
|
||||
samples/docvwmdi/Makefile.in
|
||||
samples/dragimag/Makefile.in
|
||||
samples/drawing/Makefile.in
|
||||
samples/dynamic/Makefile.in
|
||||
samples/erase/Makefile.in
|
||||
samples/except/Makefile.in
|
||||
samples/except/Makefile.in
|
||||
samples/exec/Makefile.in
|
||||
samples/event/Makefile.in
|
||||
samples/grid/Makefile.in
|
||||
samples/keyboard/Makefile.in
|
||||
samples/help/Makefile.in
|
||||
samples/htlbox/Makefile.in
|
||||
samples/internat/Makefile.in
|
||||
samples/ipc/Makefile.in
|
||||
samples/html/Makefile.in
|
||||
samples/html/about/Makefile.in
|
||||
samples/html/help/Makefile.in
|
||||
samples/html/htmlctrl/Makefile.in
|
||||
samples/html/helpview/Makefile.in
|
||||
samples/html/printing/Makefile.in
|
||||
samples/html/test/Makefile.in
|
||||
samples/html/virtual/Makefile.in
|
||||
samples/html/widget/Makefile.in
|
||||
samples/html/zip/Makefile.in
|
||||
samples/html/htmlctrl/Makefile.in
|
||||
samples/image/Makefile.in
|
||||
samples/joytest/Makefile.in
|
||||
samples/layout/Makefile.in
|
||||
samples/listbox/Makefile.in
|
||||
samples/listctrl/Makefile.in
|
||||
samples/mfc/Makefile.in
|
||||
samples/mdi/Makefile.in
|
||||
samples/mediaplayer/Makefile.in
|
||||
samples/minifram/Makefile.in
|
||||
samples/minimal/Makefile.in
|
||||
samples/multimon/Makefile.in
|
||||
samples/notebook/Makefile.in
|
||||
samples/nativdlg/Makefile.in
|
||||
samples/oleauto/Makefile.in
|
||||
samples/ownerdrw/Makefile.in
|
||||
samples/png/Makefile.in
|
||||
samples/popup/Makefile.in
|
||||
samples/printing/Makefile.in
|
||||
samples/propgrid/Makefile.in
|
||||
samples/propsize/Makefile.in
|
||||
samples/regtest/Makefile.in
|
||||
samples/render/Makefile.in
|
||||
samples/richedit/Makefile.in
|
||||
samples/richtext/Makefile.in
|
||||
samples/rotate/Makefile.in
|
||||
samples/sashtest/Makefile.in
|
||||
samples/scroll/Makefile.in
|
||||
samples/shaped/Makefile.in
|
||||
samples/sound/Makefile.in
|
||||
samples/sockets/Makefile.in
|
||||
samples/splash/Makefile.in
|
||||
samples/splitter/Makefile.in
|
||||
samples/statbar/Makefile.in
|
||||
samples/taskbar/Makefile.in
|
||||
samples/text/Makefile.in
|
||||
samples/thread/Makefile.in
|
||||
samples/toolbar/Makefile.in
|
||||
samples/treectrl/Makefile.in
|
||||
samples/typetest/Makefile.in
|
||||
samples/dialup/Makefile.in
|
||||
samples/display/Makefile.in
|
||||
samples/font/Makefile.in
|
||||
samples/menu/Makefile.in
|
||||
samples/memcheck/Makefile.in
|
||||
samples/opengl/Makefile.in
|
||||
samples/opengl/cube/Makefile.in
|
||||
samples/opengl/penguin/Makefile.in
|
||||
samples/opengl/isosurf/Makefile.in
|
||||
samples/validate/Makefile.in
|
||||
samples/vscroll/Makefile.in
|
||||
samples/xrc/Makefile.in
|
||||
samples/widgets/Makefile.in
|
||||
samples/wizard/Makefile.in
|
||||
demos/Makefile.in
|
||||
demos/bombs/Makefile.in
|
||||
demos/forty/Makefile.in
|
||||
demos/fractal/Makefile.in
|
||||
demos/poem/Makefile.in
|
||||
demos/life/Makefile.in
|
||||
demos/dbbrowse/Makefile.in
|
||||
utils/tex2rtf/Makefile.in
|
||||
utils/tex2rtf/src/Makefile.in
|
||||
utils/makegen/Makefile.in
|
||||
utils/HelpGen/Makefile.in
|
||||
utils/HelpGen/src/Makefile.in
|
||||
utils/Makefile.in
|
||||
utils/hhp2cached/Makefile.in
|
||||
utils/emulator/Makefile.in
|
||||
utils/emulator/src/Makefile.in
|
||||
utils/helpview/Makefile.in
|
||||
utils/helpview/src/Makefile.in
|
||||
utils/wxrc/Makefile.in
|
||||
|
||||
contrib/Makefile.in
|
||||
contrib/src/Makefile.in
|
||||
contrib/src/applet/Makefile.in
|
||||
contrib/src/canvas/Makefile.in
|
||||
contrib/src/foldbar/Makefile.in
|
||||
contrib/src/ogl/Makefile.in
|
||||
contrib/src/mmedia/Makefile.in
|
||||
contrib/src/stc/Makefile.in
|
||||
contrib/src/plot/Makefile.in
|
||||
contrib/src/gizmos/Makefile.in
|
||||
contrib/src/animate/Makefile.in
|
||||
contrib/src/fl/Makefile.in
|
||||
contrib/src/net/Makefile.in
|
||||
|
||||
contrib/samples/Makefile.in
|
||||
contrib/samples/foldbar/Makefile.in
|
||||
contrib/samples/foldbar/extended/Makefile.in
|
||||
contrib/samples/foldbar/foldpanelbar/Makefile.in
|
||||
contrib/samples/gizmos/Makefile.in
|
||||
contrib/samples/gizmos/multicell/Makefile.in
|
||||
contrib/samples/gizmos/splittree/Makefile.in
|
||||
contrib/samples/gizmos/editlbox/Makefile.in
|
||||
contrib/samples/gizmos/dynsash/Makefile.in
|
||||
contrib/samples/gizmos/dynsash_switch/Makefile.in
|
||||
contrib/samples/gizmos/led/Makefile.in
|
||||
contrib/samples/ogl/Makefile.in
|
||||
contrib/samples/ogl/ogledit/Makefile.in
|
||||
contrib/samples/ogl/studio/Makefile.in
|
||||
contrib/samples/mmedia/Makefile.in
|
||||
contrib/samples/plot/Makefile.in
|
||||
contrib/samples/stc/Makefile.in
|
||||
contrib/samples/applet/Makefile.in
|
||||
contrib/samples/animate/Makefile.in
|
||||
contrib/samples/fl/Makefile.in
|
||||
contrib/samples/svg/Makefile.in
|
||||
contrib/src/svg/Makefile.in
|
||||
|
||||
contrib/src/deprecated/Makefile.in
|
||||
contrib/samples/deprecated/Makefile.in
|
||||
contrib/samples/deprecated/proplist/Makefile.in
|
||||
contrib/samples/deprecated/treelay/Makefile.in
|
||||
contrib/samples/deprecated/resource/Makefile.in
|
||||
|
||||
contrib/utils/Makefile.in
|
||||
|
||||
descrip.mms
|
||||
lib/vms.opt
|
||||
lib/vms_gtk.opt
|
||||
contrib/samples/mmedia/descrip.mms
|
||||
demos/bombs/descrip.mms
|
||||
samples/calendar/descrip.mms
|
||||
samples/caret/descrip.mms
|
||||
samples/checklst/descrip.mms
|
||||
samples/config/descrip.mms
|
||||
samples/controls/descrip.mms
|
||||
samples/db/descrip.mms
|
||||
samples/dialogs/descrip.mms
|
||||
samples/dialup/descrip.mms
|
||||
samples/dnd/descrip.mms
|
||||
samples/docview/descrip.mms
|
||||
samples/drawing/descrip.mms
|
||||
samples/font/descrip.mms
|
||||
samples/image/descrip.mms
|
||||
samples/mdi/descrip.mms
|
||||
samples/menu/descrip.mms
|
||||
samples/minimal/descrip.mms
|
||||
samples/resource/descrip.mms
|
||||
src/common/descrip.mms
|
||||
src/generic/descrip.mms
|
||||
src/gtk/descrip.mms
|
||||
src/html/descrip.mms
|
||||
src/motif/descrip.mms
|
||||
src/x11/descrip.mms
|
||||
src/png/scripts/descrip.mms
|
||||
src/unix/descrip.mms
|
||||
src/zlib/descrip.mms
|
||||
src/xml/descrip.mms
|
||||
src/xrc/descrip.mms
|
||||
src/regex/descrip.mms
|
||||
utils/helpview/src/descrip.mms
|
||||
utils/tex2rtf/src/descrip.mms
|
||||
|
||||
@@ -1,300 +0,0 @@
|
||||
# File: makefile.vc
|
||||
# Author: Julian Smart
|
||||
# Created: 1997
|
||||
# Updated:
|
||||
# Copyright: (c) 1997, Julian Smart
|
||||
#
|
||||
# "%W% %G%"
|
||||
#
|
||||
# Makefile : Builds wxWidgets library wx.lib for VC++ (32-bit)
|
||||
# Arguments:
|
||||
#
|
||||
# FINAL=1 argument to nmake to build version with no debugging info.
|
||||
# dll builds a library (wxdll.lib) suitable for creating DLLs
|
||||
#
|
||||
WXDIR=$(WXWIN)
|
||||
THISDIR=$(WXWIN)\distrib\msw
|
||||
DOCDIR = $(WXDIR)\docs
|
||||
WAITFLAG=/w
|
||||
# Making documents
|
||||
docs: allhlp allhtml allpdfrtf allhtb allhtmlhelp
|
||||
alldocs: docs
|
||||
hlp: wxhlp
|
||||
wxhlp: $(DOCDIR)/winhelp/wx.hlp
|
||||
rtf: $(DOCDIR)/winhelp/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
|
||||
ps: wxps
|
||||
wxps: $(WXDIR)\docs\ps\wx.ps
|
||||
|
||||
allhlp: wxhlp
|
||||
|
||||
# cd $(WXDIR)\utils\dialoged\src
|
||||
# nmake -f makefile.vc hlp
|
||||
# cd $(WXDIR)\utils\tex2rtf\src
|
||||
# nmake -f makefile.vc hlp
|
||||
# cd $(WXDIR)\contrib\src\fl
|
||||
# nmake -f makefile.vc hlp
|
||||
# cd $(THISDIR)
|
||||
|
||||
allhtml: wxhtml
|
||||
|
||||
# cd $(WXDIR)\utils\dialoged\src
|
||||
# nmake -f makefile.vc html
|
||||
# cd $(WXDIR)\utils\tex2rtf\src
|
||||
# nmake -f makefile.vc html
|
||||
# cd $(WXDIR)\contrib\src\fl
|
||||
# cd $(THISDIR)
|
||||
|
||||
allhtmlhelp: htmlhelp
|
||||
|
||||
# cd $(WXDIR)\utils\dialoged\src
|
||||
# nmake -f makefile.vc htmlhelp
|
||||
# cd $(WXDIR)\utils\tex2rtf\src
|
||||
# nmake -f makefile.vc htmlhelp
|
||||
# cd $(WXDIR)\contrib\src\fl
|
||||
# nmake -f makefile.vc htmlhelp
|
||||
# cd $(THISDIR)
|
||||
|
||||
allhtb: htb
|
||||
|
||||
# cd $(WXDIR)\utils\dialoged\src
|
||||
# nmake -f makefile.vc htb
|
||||
# cd $(WXDIR)\utils\tex2rtf\src
|
||||
# nmake -f makefile.vc htb
|
||||
# cd $(WXDIR)\contrib\src\fl
|
||||
# nmake -f makefile.vc htb
|
||||
# cd $(THISDIR)
|
||||
|
||||
allps: wxps referencps
|
||||
cd $(WXDIR)\utils\dialoged\src
|
||||
nmake -f makefile.vc ps
|
||||
cd $(WXDIR)\utils\tex2rtf\src
|
||||
nmake -f makefile.vc ps
|
||||
cd $(WXDIR)\contrib\src\fl
|
||||
nmake -f makefile.vc ps
|
||||
cd $(THISDIR)
|
||||
|
||||
allpdfrtf: pdfrtf
|
||||
# cd $(WXDIR)\utils\dialoged\src
|
||||
# nmake -f makefile.vc pdfrtf
|
||||
# cd $(WXDIR)\utils\tex2rtf\src
|
||||
# nmake -f makefile.vc pdfrtf
|
||||
# cd $(WXDIR)\contrib\src\fl
|
||||
# nmake -f makefile.vc pdfrtf
|
||||
# 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
|
||||
hc 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)
|
||||
|
||||
$(WXDIR)\docs\latex\wx\manual.dvi: $(DOCDIR)/latex/wx/body.tex $(DOCDIR)/latex/wx/manual.tex
|
||||
cd $(WXDIR)\docs\latex\wx
|
||||
-latex manual
|
||||
-latex manual
|
||||
-makeindx manual
|
||||
-bibtex manual
|
||||
-latex manual
|
||||
-latex manual
|
||||
cd $(THISDIR)
|
||||
|
||||
$(WXDIR)\docs\ps\wx.ps: $(WXDIR)\docs\latex\wx\manual.dvi
|
||||
cd $(WXDIR)\docs\latex\wx
|
||||
-dvips32 -o wx.ps manual
|
||||
move wx.ps $(WXDIR)\docs\ps\wx.ps
|
||||
cd $(THISDIR)
|
||||
|
||||
$(WXDIR)\docs\latex\wx\referenc.dvi: $(DOCDIR)/latex/wx/classes.tex $(DOCDIR)/latex/wx/topics.tex $(DOCDIR)/latex/wx/referenc.tex
|
||||
cd $(WXDIR)\docs\latex\wx
|
||||
-latex referenc
|
||||
-latex referenc
|
||||
-makeindx referenc
|
||||
-bibtex referenc
|
||||
-latex referenc
|
||||
-latex referenc
|
||||
cd $(THISDIR)
|
||||
|
||||
$(WXDIR)\docs\ps\referenc.ps: $(WXDIR)\docs\latex\wx\referenc.dvi
|
||||
cd $(WXDIR)\docs\latex\wx
|
||||
-dvips32 -o referenc.ps referenc
|
||||
move referenc.ps $(WXDIR)\docs\ps\referenc.ps
|
||||
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\wx.hlp
|
||||
-erase $(DOCDIR)\winhelp\wx.cnt
|
||||
-erase $(DOCDIR)\html\wx\*.html
|
||||
-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
|
||||
|
||||
# Start Word, running the GeneratePDF macro. MakeManual.dot should be in the
|
||||
# Office StartUp folder, and PDFMaker should be installed.
|
||||
updatepdf: # touchmanual pdfrtf
|
||||
start $(WAITFLAG) "winword d:\wx2\wxWidgets\docs\pdf\wx.rtf /mGeneratePDF"
|
||||
|
||||
|
||||
MFTYPE=vc
|
||||
makefile.$(MFTYPE) : $(WXWIN)\distrib\msw\tmake\filelist.txt $(WXWIN)\distrib\msw\tmake\$(MFTYPE).t
|
||||
cd $(WXWIN)\distrib\msw\tmake
|
||||
tmake -t $(MFTYPE) wxwin.pro -o makefile.$(MFTYPE)
|
||||
copy makefile.$(MFTYPE) $(WXWIN)\src\msw
|
||||
|
||||
######################
|
||||
# Tex2RTF
|
||||
######################
|
||||
|
||||
TEX2RTFDOCDIR=$(WXDIR)\utils\tex2rtf\docs
|
||||
|
||||
tex2rtfhtml: $(DOCDIR)\html\tex2rtf\t2rtf.htm
|
||||
tex2rtfhtmlhelp: $(DOCDIR)\htmlhelp\tex2rtf.chm
|
||||
tex2rtfhtb: $(DOCDIR)\htb\tex2rtf.htb
|
||||
tex2rtfhlp: $(DOCDIR)\winhelp\tex2rtf.hlp
|
||||
tex2rtfpdfrtf: $(DOCDIR)\pdf\tex2rtf.rtf
|
||||
tex2rtfps: $(WXDIR)\docs\ps\tex2rtf.ps
|
||||
|
||||
$(DOCDIR)\winhelp\tex2rtf.hlp: $(TEX2RTFDOCDIR)\tex2rtf.rtf $(TEX2RTFDOCDIR)\tex2rtf.hpj
|
||||
cd $(TEX2RTFDOCDIR)
|
||||
-erase tex2rtf.ph
|
||||
hc tex2rtf
|
||||
copy tex2rtf.hlp $(DOCDIR)\winhelp\tex2rtf.hlp
|
||||
copy tex2rtf.cnt $(DOCDIR)\winhelp\tex2rtf.cnt
|
||||
cd $(THISDIR)
|
||||
|
||||
$(TEX2RTFDOCDIR)\tex2rtf.rtf: $(DOCSOURCES)
|
||||
cd $(TEX2RTFDOCDIR)
|
||||
-start /w tex2rtf $(TEX2RTFDOCDIR)\tex2rtf.tex $(TEX2RTFDOCDIR)\tex2rtf.rtf -twice -winhelp
|
||||
cd $(THISDIR)
|
||||
|
||||
$(DOCDIR)\pdf\tex2rtf.rtf: $(DOCSOURCES)
|
||||
cd $(TEX2RTFDOCDIR)
|
||||
-copy *.wmf $(DOCDIR)\pdf
|
||||
-copy *.bmp $(DOCDIR)\pdf
|
||||
-start /w tex2rtf $(TEX2RTFDOCDIR)\tex2rtf.tex $(DOCDIR)\pdf\tex2rtf.rtf -twice -rtf
|
||||
cd $(THISDIR)
|
||||
|
||||
$(DOCDIR)\html\tex2rtf\t2rtf.htm: $(DOCSOURCES)
|
||||
cd $(TEX2RTFDOCDIR)
|
||||
-mkdir $(DOCDIR)\html\tex2rtf
|
||||
-copy *.gif $(DOCDIR)\html\tex2rtf
|
||||
-start /w tex2rtf $(TEX2RTFDOCDIR)\tex2rtf.tex $(DOCDIR)\html\tex2rtf\t2rtf.htm -twice -html
|
||||
-erase $(DOCDIR)\html\tex2rtf\*.con
|
||||
-erase $(DOCDIR)\html\tex2rtf\*.ref
|
||||
cd $(THISDIR)
|
||||
|
||||
$(DOCDIR)\htmlhelp\tex2rtf.chm : $(DOCDIR)\html\tex2rtf\t2rtf.htm $(DOCDIR)\html\tex2rtf\t2rtf.hhp
|
||||
cd $(DOCDIR)\html\tex2rtf
|
||||
-hhc t2rtf.hhp
|
||||
move t2rtf.chm $(DOCDIR)\htmlhelp\tex2rtf.chm
|
||||
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\tex2rtf.htb: $(DOCDIR)\html\tex2rtf\t2rtf.htm
|
||||
cd $(DOCDIR)\html\tex2rtf
|
||||
-erase tex2rtf.zip tex2rtf.htb
|
||||
zip tex2rtf.zip *.htm *.gif *.hhp *.hhc *.hhk
|
||||
-mkdir $(DOCDIR)\htb
|
||||
move tex2rtf.zip $(DOCDIR)\htb\tex2rtf.htb
|
||||
cd $(THISDIR)
|
||||
|
||||
$(TEX2RTFDOCDIR)\tex2rtf.dvi: $(DOCSOURCES)
|
||||
cd $(TEX2RTFDOCDIR)
|
||||
-latex tex2rtf
|
||||
-latex tex2rtf
|
||||
-makeindx tex2rtf
|
||||
-bibtex tex2rtf
|
||||
-latex tex2rtf
|
||||
-latex tex2rtf
|
||||
cd $(THISDIR)
|
||||
|
||||
$(WXDIR)\docs\ps\tex2rtf.ps: $(TEX2RTFDOCDIR)\tex2rtf.dvi
|
||||
cd $(TEX2RTFDOCDIR)
|
||||
-dvips32 -o tex2rtf.ps tex2rtf
|
||||
copy tex2rtf.ps $(WXDIR)\docs\ps\tex2rtf.ps
|
||||
cd $(THISDIR)
|
||||
|
||||
|
||||
@@ -1,71 +0,0 @@
|
||||
@echo off
|
||||
Rem Make an Inno Setup distribution list, where files and dirs are represented by
|
||||
Rem sections like this:
|
||||
Rem [Dirs]
|
||||
Rem Name: {app}\docs
|
||||
Rem
|
||||
Rem [Files]
|
||||
Rem Source: c:\wx2stable\wxWindows\deliver2\docs\readme.txt; DestDir: {app}\docs\; DestName: readme.txt
|
||||
|
||||
set wxwindir=%WXWIN
|
||||
|
||||
Rem Generate a list of all files in the distribution.
|
||||
Rem We have to be in the right directory already.
|
||||
dir /BS >& %TEMP\files1.tmp
|
||||
|
||||
Rem Now we iterate through the list of files, writing out the middle section of
|
||||
Rem the file.
|
||||
Rem We have to remove the first part of the path,
|
||||
Rem by truncating the start by the size of the current directory.
|
||||
|
||||
set sz=%@EVAL[%@LEN[%_CWD]+1]
|
||||
set len=%@LINES[%TEMP\files1.tmp]
|
||||
|
||||
erase /Y %TEMP\files2.tmp
|
||||
|
||||
Rem Add directories
|
||||
|
||||
echo. >> %temp\files2.tmp
|
||||
echo [Dirs] >> %temp\files2.tmp
|
||||
|
||||
do i = 0 to %len by 1
|
||||
set line=%@LINE[%TEMP\files1.tmp,%i]
|
||||
Rem Skip files.
|
||||
if not isdir %line enddo
|
||||
set sz2=%@LEN[%line]
|
||||
set n=%@EVAL[%sz2-%sz]
|
||||
set line2=%@SUBSTR[%line,%sz,%n]
|
||||
if "%line2%" == "" enddo
|
||||
|
||||
echo Name: {app}\%line2 >> %TEMP\files2.tmp
|
||||
enddo
|
||||
|
||||
echo. >>%TEMP\files2.tmp
|
||||
|
||||
Rem Add files
|
||||
|
||||
echo. >> %temp\files2.tmp
|
||||
echo [Files] >> %temp\files2.tmp
|
||||
|
||||
do i = 0 to %len by 1
|
||||
set line=%@LINE[%TEMP\files1.tmp,%i]
|
||||
Rem Skip directories.
|
||||
if isdir %line enddo
|
||||
set sz2=%@LEN[%line]
|
||||
set n=%@EVAL[%sz2-%sz]
|
||||
set line2=%@SUBSTR[%line,%sz,%n]
|
||||
set filename=%@FILENAME[%line2]
|
||||
set dirname=%@PATH[%line2]
|
||||
|
||||
echo Source: %line; DestDir: {app}\%dirname; DestName: %filename >> %TEMP\files2.tmp
|
||||
enddo
|
||||
|
||||
Rem Concatenate the 3 sections
|
||||
cat %wxwindir\distrib\msw\innotop.txt %TEMP\files2.tmp %wxwindir\distrib\msw\innobott.txt > %wxwindir\distrib\msw\wxwin2.iss
|
||||
|
||||
erase /Y %TEMP\files1.tmp
|
||||
rem erase /Y %TEMP\files2.tmp
|
||||
|
||||
goto end
|
||||
|
||||
:end
|
||||
@@ -1,132 +0,0 @@
|
||||
#! /bin/sh
|
||||
# Make an Inno Setup distribution list, where files and dirs are represented by
|
||||
# sections like this:
|
||||
# [Dirs]
|
||||
# Name: {app}\backgrounds
|
||||
#
|
||||
# [Files]
|
||||
# Source: C:\program\setup\about.htm; DestDir: {app}\; DestName: about.htm
|
||||
#
|
||||
#
|
||||
# Usage: makeinno.sh sourcedir inno-topfile inno-bottomfile destfile
|
||||
# For example: makeinno.sh c:/project/allfiles c:/project/innotop.txt c:/project/innobott.txt c:/project/project.iss
|
||||
#
|
||||
|
||||
PROGNAME=$0
|
||||
SOURCEDIR=$1
|
||||
TOPFILE=$2
|
||||
BOTTOMFILE=$3
|
||||
INNOFILE=$4
|
||||
TEMPDIR=/tmp
|
||||
|
||||
dochecks()
|
||||
{
|
||||
if [ "$SOURCEDIR" = "" ] || [ "$TOPFILE" = "" ] || [ "$BOTTOMFILE" = "" ] || [ "$INNOFILE" = "" ] ; then
|
||||
usage
|
||||
fi
|
||||
|
||||
if [ ! -d $SOURCEDIR ]; then
|
||||
echo "Sorry, the source directory $SOURCEDIR does not exist."
|
||||
usage
|
||||
fi
|
||||
|
||||
if [ ! -f $TOPFILE ]; then
|
||||
echo "Sorry, the Inno Setup header $TOPFILE does not exist."
|
||||
usage
|
||||
fi
|
||||
|
||||
if [ ! -f $BOTTOMFILE ]; then
|
||||
echo "Sorry, the Inno Setup header $BOTTOMFILE does not exist."
|
||||
usage
|
||||
fi
|
||||
|
||||
if [ ! -d $TEMPDIR ]; then
|
||||
mkdir $TEMPDIR
|
||||
fi
|
||||
}
|
||||
|
||||
doreplace()
|
||||
{
|
||||
thefile=$1
|
||||
theexpr=$2
|
||||
|
||||
if [ -f $thefile ]; then
|
||||
sed -e "$theexpr" < $thefile > $thefile.tmp
|
||||
mv $thefile.tmp $thefile
|
||||
else
|
||||
echo "*** $thefile not found."
|
||||
fi
|
||||
}
|
||||
|
||||
generateinno()
|
||||
{
|
||||
# SRCDIR=`cygpath -u $SRCDIR`
|
||||
# DESTDIR=`cygpath -u $DESTDIR`
|
||||
# TEMPDIR=`cygpath -u $TEMP`
|
||||
|
||||
|
||||
# Generate a list of all files in the distribution.
|
||||
# We pass the output through sed in order to remove the preceding "./"
|
||||
cd $SOURCEDIR
|
||||
find . -print | sed -e "s/\.\\///g" > $TEMPDIR/files1.tmp
|
||||
|
||||
echo "[Dirs]" > $TEMPDIR/files2.tmp
|
||||
|
||||
for line in `cat $TEMPDIR/files1.tmp` ; do
|
||||
|
||||
# If a directory, add to file
|
||||
if [ -d $line ] ; then
|
||||
# The relative path
|
||||
# TODO: make into DOS filename form
|
||||
#line2=`cygpath -w $line`
|
||||
line2=$line
|
||||
|
||||
echo " Name: {app}\\"$line2 >> $TEMPDIR/files2.tmp
|
||||
fi
|
||||
done
|
||||
|
||||
echo "" >> $TEMPDIR/files2.tmp
|
||||
echo "[Files]" >> $TEMPDIR/files2.tmp
|
||||
|
||||
for line in `cat $TEMPDIR/files1.tmp` ; do
|
||||
|
||||
# If not a directory, add to file
|
||||
if [ ! -d $line ] ; then
|
||||
# The relative path
|
||||
# TODO: make into DOS filename form
|
||||
#line2=`cygpath -w $line`
|
||||
line2=$line
|
||||
|
||||
# The absolute path
|
||||
# TODO: make into DOS filename form
|
||||
#line1=`cygpath -w $SOURCEDIR`"\\"$line2
|
||||
line1=$SOURCEDIR"\\"$line2
|
||||
#pathonly=`find $line -printf "%h"`
|
||||
pathonly=`dirname $line`
|
||||
|
||||
echo " Source: "$line1"; DestDir: {app}\\"$pathonly >> $TEMPDIR/files2.tmp
|
||||
fi
|
||||
done
|
||||
|
||||
echo "" >> $TEMPDIR/files2.tmp
|
||||
|
||||
doreplace $TEMPDIR/files2.tmp "s/\//\\\/g"
|
||||
|
||||
# Concatenate the 3 sections
|
||||
cat $TOPFILE $TEMPDIR/files2.tmp $BOTTOMFILE > $INNOFILE
|
||||
|
||||
rm -f $TEMPDIR/files1.tmp
|
||||
}
|
||||
|
||||
usage()
|
||||
{
|
||||
echo Usage: $PROGNAME sourcedir inno-topfile inno-bottomfile destfile
|
||||
echo For example: $PROGNAME c:/project/allfiles c:/project/innotop.txt c:/project/innobott.txt c:/project/project.iss
|
||||
echo Remember to use paths of the form c:/thing rather than /c/thing.
|
||||
exit 1
|
||||
}
|
||||
|
||||
dochecks
|
||||
generateinno
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,350 +0,0 @@
|
||||
#!/bin/sh
|
||||
# Makes the wxWidgets tarballs with 'make dist'
|
||||
|
||||
doupdatecvs()
|
||||
{
|
||||
cd $WXSRC
|
||||
echo Updating from CVS...
|
||||
cvswx update -d -P
|
||||
}
|
||||
|
||||
dospinwxgtk()
|
||||
{
|
||||
echo Making wxGTK tarballs...
|
||||
|
||||
if [ ! -d $WXDEST ]; then
|
||||
mkdir $WXDEST
|
||||
fi
|
||||
|
||||
rm -f -r $WXDEST/wxgtk
|
||||
mkdir $WXDEST/wxgtk
|
||||
mkdir $WXDEST/wxgtk/release
|
||||
|
||||
cd $WXSRC
|
||||
cd locale
|
||||
make allmo
|
||||
cd $WXDEST/wxgtk/release
|
||||
echo Configuring...
|
||||
$WXSRC/configure --no-recursion
|
||||
echo Making...
|
||||
make -j1 dist bzip-dist-only
|
||||
mv $WXDEST/wxgtk/release/*.gz $WXDEST/wxgtk/release/*.bz2 $WXDEST
|
||||
}
|
||||
|
||||
dospinwxmgl()
|
||||
{
|
||||
echo Making wxMGL tarballs...
|
||||
|
||||
if [ ! -d $WXDEST ]; then
|
||||
mkdir $WXDEST
|
||||
fi
|
||||
|
||||
rm -f -r $WXDEST/wxmgl
|
||||
mkdir $WXDEST/wxmgl
|
||||
mkdir $WXDEST/wxmgl/release
|
||||
|
||||
cd $WXSRC
|
||||
cd locale
|
||||
make allmo
|
||||
cd $WXDEST/wxmgl/release
|
||||
echo Configuring...
|
||||
$WXSRC/configure --no-recursion --with-mgl
|
||||
echo Making...
|
||||
make -j1 dist bzip-dist-only
|
||||
mv $WXDEST/wxmgl/release/*.gz $WXDEST/wxmgl/release/*.bz2 $WXDEST
|
||||
}
|
||||
|
||||
dospinwxbase()
|
||||
{
|
||||
echo Making wxBase tarballs...
|
||||
|
||||
if [ ! -d $WXDEST ]; then
|
||||
mkdir $WXDEST
|
||||
fi
|
||||
|
||||
rm -f -r $WXDEST/wxbase
|
||||
mkdir $WXDEST/wxbase
|
||||
mkdir $WXDEST/wxbase/release
|
||||
|
||||
cd $WXSRC
|
||||
cd locale
|
||||
make allmo
|
||||
cd $WXDEST/wxbase/release
|
||||
echo Configuring...
|
||||
$WXSRC/configure --no-recursion --disable-gui
|
||||
echo Making...
|
||||
make -j1 dist bzip-dist-only
|
||||
mv $WXDEST/wxbase/release/*.gz $WXDEST/wxbase/release/*.bz2 $WXDEST
|
||||
}
|
||||
|
||||
dospinwxx11()
|
||||
{
|
||||
echo Making wxX11 tarballs...
|
||||
|
||||
if [ ! -d $WXDEST ]; then
|
||||
mkdir $WXDEST
|
||||
fi
|
||||
|
||||
rm -f -r $WXDEST/wxx11
|
||||
mkdir $WXDEST/wxx11
|
||||
mkdir $WXDEST/wxx11/release
|
||||
|
||||
cd $WXSRC
|
||||
cd locale
|
||||
make allmo
|
||||
cd $WXDEST/wxx11/release
|
||||
echo Configuring...
|
||||
$WXSRC/configure --with-x11 --no-recursion
|
||||
echo Making...
|
||||
make -j1 dist bzip-dist-only
|
||||
|
||||
cp $WXDEST/wxx11/release/*.tar.gz $WXDEST
|
||||
cp $WXDEST/wxx11/release/*.tar.bz2 $WXDEST
|
||||
}
|
||||
|
||||
dospinwxmotif()
|
||||
{
|
||||
echo Making wxMotif tarballs...
|
||||
|
||||
if [ ! -d $WXDEST ]; then
|
||||
mkdir $WXDEST
|
||||
fi
|
||||
|
||||
rm -f -r $WXDEST/wxmotif
|
||||
mkdir $WXDEST/wxmotif
|
||||
mkdir $WXDEST/wxmotif/release
|
||||
|
||||
cd $WXSRC
|
||||
cd locale
|
||||
make allmo
|
||||
cd $WXDEST/wxmotif/release
|
||||
echo Configuring...
|
||||
$WXSRC/configure --with-motif --no-recursion
|
||||
echo Making...
|
||||
make -j1 dist bzip-dist-only
|
||||
|
||||
cp $WXDEST/wxmotif/release/*.tar.gz $WXDEST
|
||||
cp $WXDEST/wxmotif/release/*.tar.bz2 $WXDEST
|
||||
|
||||
echo Rearchiving wxMotif tarballs to change wxMOTIF to wxMotif...
|
||||
cd $WXDEST
|
||||
mkdir wxMotif.tmp
|
||||
cd wxMotif.tmp
|
||||
rm -f -r *
|
||||
tar xfz ../wxMOTIF-$WXVER.tar.gz
|
||||
mv wxMOTIF-$WXVER wxMotif-$WXVER
|
||||
rm -f ../wxMOTIF-$WXVER.tar.gz
|
||||
rm -f ../wxMOTIF-$WXVER.tar.bz2
|
||||
tar cf ../wxMotif-$WXVER.tar *
|
||||
gzip -c ../wxMotif-$WXVER.tar > ../wxMotif-$WXVER.tar.gz
|
||||
bzip2 -f9 ../wxMotif-$WXVER.tar
|
||||
cd ..
|
||||
rm -f -r wxMotif.tmp
|
||||
# rm -f -r $WXDEST/wxmotif
|
||||
}
|
||||
|
||||
dospinwxmac()
|
||||
{
|
||||
echo Making wxMac tarballs...
|
||||
|
||||
if [ ! -d $WXDEST ]; then
|
||||
mkdir $WXDEST
|
||||
fi
|
||||
|
||||
rm -f -r $WXDEST/wxmac
|
||||
mkdir $WXDEST/wxmac
|
||||
mkdir $WXDEST/wxmac/release
|
||||
|
||||
cd $WXSRC
|
||||
cd locale
|
||||
make allmo
|
||||
cd $WXDEST/wxmac/release
|
||||
echo Configuring...
|
||||
$WXSRC/configure --with-mac --no-recursion
|
||||
echo Making...
|
||||
make -j1 dist bzip-dist-only
|
||||
|
||||
cp $WXDEST/wxmac/release/*.tar.gz $WXDEST
|
||||
cp $WXDEST/wxmac/release/*.tar.bz2 $WXDEST
|
||||
|
||||
echo Rearchiving wxMac tarballs to change wxMAC to wxMAC...
|
||||
cd $WXDEST
|
||||
mkdir wxMac.tmp
|
||||
cd wxMac.tmp
|
||||
rm -f -r *
|
||||
tar xfz ../wxMac-$WXVER.tar.gz
|
||||
mv wxMAC-$WXVER wxMac-$WXVER
|
||||
rm -f ../wxMAC-$WXVER.tar.gz
|
||||
rm -f ../wxMAC-$WXVER.tar.bz2
|
||||
tar cf ../wxMac-$WXVER.tar *
|
||||
gzip -c ../wxMac-$WXVER.tar > ../wxMac-$WXVER.tar.gz
|
||||
bzip2 -f9 ../wxMac-$WXVER.tar
|
||||
cd ..
|
||||
rm -f -r wxMac.tmp
|
||||
|
||||
rm -f -r $WXDEST/wxmac
|
||||
}
|
||||
|
||||
docopydocs()
|
||||
{
|
||||
cp $WXSRC/docs/readme.txt $WXDEST/readme-${WXVER}.txt
|
||||
cp $WXSRC/docs/changes.txt $WXDEST/changes-${WXVER}.txt
|
||||
cp $WXSRC/docs/mgl/readme.txt $WXDEST/readme-mgl-${WXVER}.txt
|
||||
cp $WXSRC/docs/mgl/install.txt $WXDEST/install-mgl-${WXVER}.txt
|
||||
cp $WXSRC/docs/x11/readme.txt $WXDEST/readme-x11-${WXVER}.txt
|
||||
cp $WXSRC/docs/x11/readme-nanox.txt $WXDEST/readme-nanox-${WXVER}.txt
|
||||
cp $WXSRC/docs/x11/install.txt $WXDEST/install-x11-${WXVER}.txt
|
||||
cp $WXSRC/docs/motif/readme.txt $WXDEST/readme-motif-${WXVER}.txt
|
||||
cp $WXSRC/docs/motif/install.txt $WXDEST/install-motif-${WXVER}.txt
|
||||
cp $WXSRC/docs/msw/readme.txt $WXDEST/readme-msw-${WXVER}.txt
|
||||
cp $WXSRC/docs/msw/install.txt $WXDEST/install-msw-${WXVER}.txt
|
||||
cp $WXSRC/docs/gtk/readme.txt $WXDEST/readme-gtk-${WXVER}.txt
|
||||
cp $WXSRC/docs/gtk/install.txt $WXDEST/install-gtk-${WXVER}.txt
|
||||
cp $WXSRC/docs/mac/readme.txt $WXDEST/readme-mac-${WXVER}.txt
|
||||
cp $WXSRC/docs/mac/install.txt $WXDEST/install-mac-${WXVER}.txt
|
||||
cp $WXSRC/docs/os2/install.txt $WXDEST/install-os2-${WXVER}.txt
|
||||
}
|
||||
|
||||
dospindocs()
|
||||
{
|
||||
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 Archiving manuals...
|
||||
# TODO
|
||||
|
||||
echo Done making manuals.
|
||||
}
|
||||
|
||||
PROGNAME=$0
|
||||
WXSRC=$1
|
||||
WXDEST=$2
|
||||
WXVER=$3
|
||||
|
||||
SPINWXX11=0
|
||||
SPINWXGTK=0
|
||||
SPINWXMOTIF=0
|
||||
SPINWXMAC=0
|
||||
SPINWXBASE=0
|
||||
SPINWXMGL=0
|
||||
SPINDOCS=0
|
||||
SPINEVERYTHING=0
|
||||
UPDATECVS=0
|
||||
SILENT=0
|
||||
|
||||
usage()
|
||||
{
|
||||
echo Usage: $PROGNAME "src-dir dest-dir version-number [ options ]"
|
||||
echo Options:
|
||||
echo " --help Display this help message"
|
||||
echo " --wxgtk Spin wxGTK"
|
||||
echo " --wxbase Spin wxBase"
|
||||
echo " --wxx11 Spin wxX11"
|
||||
echo " --wxmotif Spin wxMotif"
|
||||
echo " --wxmac Spin wxMac"
|
||||
echo " --wxmgl Spin wxMGL"
|
||||
echo " --docs Spin docs"
|
||||
echo " --all Spin EVERYTHING"
|
||||
echo " --updatecvs Update from CVS"
|
||||
|
||||
exit 1
|
||||
}
|
||||
|
||||
init=""
|
||||
if [ "$1" = "" ]
|
||||
then
|
||||
usage
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ "$2" = "" ]
|
||||
then
|
||||
usage
|
||||
exit
|
||||
fi
|
||||
|
||||
if [ "$3" = "" ]
|
||||
then
|
||||
usage
|
||||
exit
|
||||
fi
|
||||
|
||||
# Process command line options.
|
||||
shift 3
|
||||
for i in "$@"; do
|
||||
case "$i" in
|
||||
--wxx11) SPINWXX11=1 ;;
|
||||
--wxgtk) SPINWXGTK=1 ;;
|
||||
--wxmac) SPINWXMAC=1 ;;
|
||||
--wxbase) SPINWXBASE=1 ;;
|
||||
--wxmgl) SPINWXMGL=1 ;;
|
||||
--wxmotif) SPINWXMOTIF=1 ;;
|
||||
--all) SPINEVERYTHING=1 ;;
|
||||
--updatecvs) UPDATECVS=1 ;;
|
||||
--silent) SILENT=1 ;;
|
||||
*)
|
||||
usage
|
||||
exit
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
echo About to make wxWidgets RPMs:
|
||||
echo From $WXSRC
|
||||
echo To $WXDEST
|
||||
echo Version $WXVER
|
||||
|
||||
# we don't want this when batch building tarballs.
|
||||
if [ "$SILENT" = "0" ]; then
|
||||
echo CTRL-C if this is not correct.
|
||||
read dummy
|
||||
fi
|
||||
|
||||
if [ "$UPDATECVS" = "1" ]; then
|
||||
doupdatecvs
|
||||
fi
|
||||
|
||||
if [ "$SPINWXX11" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then
|
||||
dospinwxx11
|
||||
fi
|
||||
|
||||
if [ "$SPINWXGTK" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then
|
||||
dospinwxgtk
|
||||
fi
|
||||
|
||||
if [ "$SPINWXMOTIF" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then
|
||||
dospinwxmotif
|
||||
fi
|
||||
|
||||
if [ "$SPINWXMAC" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then
|
||||
dospinwxmac
|
||||
fi
|
||||
|
||||
if [ "$SPINWXMGL" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then
|
||||
dospinwxmgl
|
||||
fi
|
||||
|
||||
if [ "$SPINWXBASE" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then
|
||||
dospinwxbase
|
||||
fi
|
||||
|
||||
if [ "$SPINDOCS" = "1" ] || [ "$SPINEVERYTHING" = "1" ]; then
|
||||
dospindocs
|
||||
fi
|
||||
|
||||
docopydocs
|
||||
@@ -1,9 +0,0 @@
|
||||
PATH="/c/Program Files/Bakefile/src":$PATH
|
||||
cd $WXWIN
|
||||
mkdir -p build/wince
|
||||
echo "<?xml version=\"1.0\"?><bakefile-gen><enable-formats>msevc4prj</enable-formats></bakefile-gen>" > build/bakefiles/Bakefiles.local.bkgen
|
||||
cd build/bakefiles
|
||||
echo $PATH
|
||||
# bakefile_gen -b wx.bkl -f msevc4prj
|
||||
bakefile_gen -f msevc4prj
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
include/wx/mgl/*.h
|
||||
src/mgl/*.cpp
|
||||
src/mgl/*.lst
|
||||
|
||||
include/wx/msdos/*.h
|
||||
src/msdos/*.cpp
|
||||
|
||||
@@ -1,55 +0,0 @@
|
||||
include/wx/*.h
|
||||
include/wx/*.cpp
|
||||
include/wx/*.inl
|
||||
include/wx/msw/*.h
|
||||
include/wx/msw/*.rc
|
||||
include/wx/msw/*.cur
|
||||
include/wx/msw/*.ico
|
||||
include/wx/msw/*.bmp
|
||||
include/wx/msw/ole/*.h
|
||||
include/wx/generic/*.h
|
||||
include/wx/generic/*.xpm
|
||||
include/wx/unix/*.h
|
||||
include/wx/univ/*.h
|
||||
|
||||
src/common/*.cpp
|
||||
src/common/*.c
|
||||
src/common/*.inc
|
||||
src/generic/*.cpp
|
||||
src/generic/*.c
|
||||
src/unix/*.cpp
|
||||
src/unix/*.c
|
||||
src/univ/*.cpp
|
||||
src/univ/*.c
|
||||
src/univ/*.lst
|
||||
src/univ/themes/*.cpp
|
||||
|
||||
src/msw/*.cpp
|
||||
src/msw/*.h
|
||||
src/msw/*.lst
|
||||
src/msw/*.def
|
||||
src/msw/*.inc
|
||||
src/msw/winestub.c
|
||||
src/msw/gsocket.c
|
||||
src/msw/gsockmsw.c
|
||||
src/msw/version.rc
|
||||
src/msw/makefile.mic
|
||||
src/msw/ole/*.cpp
|
||||
|
||||
samples/minimal/*.cpp
|
||||
samples/minimal/*.h
|
||||
samples/minimal/makefile.mic
|
||||
samples/minimal/*.xpm
|
||||
samples/minimal/*.ico
|
||||
|
||||
lib/dummy.txt
|
||||
|
||||
distrib/msw/microwin.rsp
|
||||
distrib/msw/tarmicrowin.sh
|
||||
|
||||
microwindows.patches
|
||||
|
||||
docs/microwin/readme.txt
|
||||
docs/msw/readme.txt
|
||||
docs/msw/install.txt
|
||||
|
||||
@@ -1,37 +0,0 @@
|
||||
contrib/docs/html/mmedia/*.htm
|
||||
contrib/docs/html/mmedia/*.gif
|
||||
contrib/docs/html/mmedia/*.png
|
||||
contrib/docs/winhelp/mmedia.hlp
|
||||
contrib/docs/winhelp/mmedia.cnt
|
||||
contrib/docs/pdf/mmedia.pdf
|
||||
|
||||
contrib/docs/latex/mmedia/*.tex
|
||||
contrib/docs/latex/mmedia/*.sty
|
||||
contrib/docs/latex/mmedia/*.bib
|
||||
contrib/docs/latex/mmedia/*.hpj
|
||||
contrib/docs/latex/mmedia/*.ini
|
||||
contrib/docs/latex/mmedia/*.txt
|
||||
contrib/docs/latex/mmedia/*.cnt
|
||||
contrib/docs/latex/mmedia/*.eps
|
||||
contrib/docs/latex/mmedia/*.bmp
|
||||
contrib/docs/latex/mmedia/*.gif
|
||||
contrib/docs/latex/mmedia/*.wmf
|
||||
|
||||
contrib/include/wx/mmedia/*.h
|
||||
contrib/include/wx/mmedia/internal/*.h
|
||||
contrib/build/mmedia/makefile*
|
||||
contrib/src/mmedia/README
|
||||
contrib/src/mmedia/*.h
|
||||
contrib/src/mmedia/*.cpp
|
||||
contrib/samples/mmedia/*.h
|
||||
contrib/samples/mmedia/*.cpp
|
||||
contrib/samples/mmedia/makefile*
|
||||
contrib/samples/mmedia/*.xbm
|
||||
contrib/samples/mmedia/*.xpm
|
||||
contrib/samples/mmedia/*.ico
|
||||
contrib/samples/mmedia/*.txt
|
||||
contrib/samples/mmedia/*.rc
|
||||
contrib/samples/mmedia/*.def
|
||||
contrib/samples/mmedia/mmboard.dsp
|
||||
contrib/samples/mmedia/*.bkl
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
src/motif/files.lst
|
||||
src/motif/*.cpp
|
||||
src/motif/*.c
|
||||
src/motif/*.h
|
||||
src/motif/makefile*
|
||||
src/motif/*.inc
|
||||
src/motif/*.xbm
|
||||
src/motif/xmcombo/*.c
|
||||
src/motif/xmcombo/*.h
|
||||
src/motif/xmcombo/*.doc
|
||||
src/motif/xmcombo/*.man
|
||||
src/motif/xmcombo/*.txt
|
||||
src/x11/files.lst
|
||||
src/x11/*.cpp
|
||||
src/x11/*.c
|
||||
src/x11/*.h
|
||||
src/x11/makefile*
|
||||
src/x11/*.inc
|
||||
src/x11/*.xbm
|
||||
|
||||
include/wx/motif/*.h
|
||||
include/wx/x11/*.h
|
||||
|
||||
docs/motif/*.txt
|
||||
docs/motif/makewxmotif
|
||||
|
||||
lib/dummy
|
||||
|
||||
misc/afm/*.afm
|
||||
misc/gs_afm/*.afm
|
||||
|
||||
@@ -1,109 +0,0 @@
|
||||
build/msw/config.*
|
||||
build/msw/makefile.*
|
||||
|
||||
lib/dummy
|
||||
lib/wx*.def
|
||||
lib/_sc/*.txt
|
||||
lib/_sc/*.def
|
||||
|
||||
docs/licence.txt
|
||||
docs/msw/*.txt
|
||||
docs/wine/*.txt
|
||||
docs/wine/COPYING.LIB
|
||||
docs/microwin/readme.txt
|
||||
docs/microwin/microwindows.patches
|
||||
|
||||
distrib/msw/*.rsp
|
||||
distrib/msw/*.bat
|
||||
|
||||
tools/gettext/*.exe
|
||||
tools/gettext/*.sed
|
||||
|
||||
src/cwcopysetup.bat
|
||||
src/cwdcopysetup.bat
|
||||
src/common/*.rc
|
||||
|
||||
src/msw/*.cpp
|
||||
src/msw/*.h
|
||||
src/msw/*.lst
|
||||
src/msw/*.inc
|
||||
src/msw/winestub.c
|
||||
src/msw/gsocket.c
|
||||
src/msw/gsockmsw.c
|
||||
src/msw/version.rc
|
||||
|
||||
src/msw/ole/*.cpp
|
||||
src/msw/*.prj
|
||||
|
||||
src/msw/wince/*.cpp
|
||||
src/msw/wince/*.c
|
||||
|
||||
include/wx/msw/*.h
|
||||
include/wx/msw/*.rc
|
||||
include/wx/msw/wx.manifest
|
||||
include/wx/msw/ole/*.h
|
||||
include/wx/msw/*.cur
|
||||
include/wx/msw/*.ico
|
||||
include/wx/msw/*.bmp
|
||||
include/msvc/wx/*.h
|
||||
|
||||
include/wx/msw/wince/*.h
|
||||
include/wx/msw/wince/*.rc
|
||||
|
||||
samples/*.rc
|
||||
samples/*.xpm
|
||||
samples/*.ico
|
||||
samples/makefile*
|
||||
|
||||
samples/ownerdrw/*.cpp
|
||||
samples/ownerdrw/*.h
|
||||
samples/ownerdrw/makefile.*
|
||||
samples/ownerdrw/*.rc
|
||||
samples/ownerdrw/*.def
|
||||
samples/ownerdrw/*.bmp
|
||||
samples/ownerdrw/*.png
|
||||
samples/ownerdrw/*.ico
|
||||
samples/ownerdrw/*.txt
|
||||
samples/ownerdrw/*.bkl
|
||||
|
||||
samples/regtest/*.cpp
|
||||
samples/regtest/*.h
|
||||
samples/regtest/makefile.*
|
||||
samples/regtest/*.rc
|
||||
samples/regtest/*.def
|
||||
samples/regtest/*.bmp
|
||||
samples/regtest/*.ico
|
||||
samples/regtest/*.txt
|
||||
samples/regtest/*.bkl
|
||||
|
||||
samples/nativdlg/*.cpp
|
||||
samples/nativdlg/*.h
|
||||
samples/nativdlg/*.def
|
||||
samples/nativdlg/*.rc
|
||||
samples/nativdlg/*.txt
|
||||
samples/nativdlg/makefile.*
|
||||
samples/nativdlg/*.xbm
|
||||
samples/nativdlg/*.ico
|
||||
samples/nativdlg/*.bmp
|
||||
samples/nativdlg/*.bkl
|
||||
|
||||
samples/mfc/*.h
|
||||
samples/mfc/*.cpp
|
||||
samples/mfc/*.def
|
||||
samples/mfc/*.rc
|
||||
samples/mfc/makefile.*
|
||||
samples/mfc/*.txt
|
||||
samples/mfc/*.bmp
|
||||
samples/mfc/*.ico
|
||||
samples/mfc/*.bkl
|
||||
|
||||
samples/oleauto/*.h
|
||||
samples/oleauto/*.cpp
|
||||
samples/oleauto/*.def
|
||||
samples/oleauto/*.rc
|
||||
samples/oleauto/makefile.*
|
||||
samples/oleauto/*.txt
|
||||
samples/oleauto/*.bmp
|
||||
samples/oleauto/*.ico
|
||||
samples/oleauto/*.bkl
|
||||
|
||||
@@ -1,265 +0,0 @@
|
||||
*.m4
|
||||
autogen.sh
|
||||
configure
|
||||
config.guess
|
||||
config.sub
|
||||
configure.in
|
||||
setup.h.in
|
||||
install-sh
|
||||
mkinstalldirs
|
||||
wx-config.in
|
||||
|
||||
locale/*.po
|
||||
locale/*.mo
|
||||
locale/Makefile
|
||||
|
||||
art/*.xpm
|
||||
|
||||
docs/readme.txt
|
||||
docs/readme_vms.txt
|
||||
docs/install.txt
|
||||
docs/changes.txt
|
||||
docs/todo.txt
|
||||
docs/licence.txt
|
||||
docs/licendoc.txt
|
||||
docs/preamble.txt
|
||||
docs/gpl.txt
|
||||
docs/lgpl.txt
|
||||
docs/symbols.txt
|
||||
docs/bugs.txt
|
||||
docs/index.htm
|
||||
docs/html/*.htm
|
||||
docs/html/*.gif
|
||||
docs/html/*.png
|
||||
docs/html/icons/*.gif
|
||||
docs/html/icons/*.png
|
||||
docs/html/icons/*.jpg
|
||||
docs/html/images/*.gif
|
||||
docs/html/images/*.png
|
||||
docs/html/images/*.jpg
|
||||
|
||||
src/makeenvs/*.env
|
||||
|
||||
src/*.inc
|
||||
src/mkdir
|
||||
src/make.env.in
|
||||
src/makeprog.env.in
|
||||
src/makelib.env.in
|
||||
src/files.lst
|
||||
|
||||
src/common/*.cpp
|
||||
src/common/dosyacc.c
|
||||
src/common/doslex.c
|
||||
src/common/vmsyacc.c
|
||||
src/common/vmslex.c
|
||||
src/common/extended.c
|
||||
src/common/unzip.c
|
||||
src/common/unzip.h
|
||||
src/common/*.l
|
||||
src/common/*.y
|
||||
src/common/*.inc
|
||||
src/common/base.rc
|
||||
|
||||
src/generic/*.cpp
|
||||
src/generic/*.c
|
||||
src/generic/*.inc
|
||||
|
||||
src/html/*.cpp
|
||||
src/html/*.h
|
||||
src/html/bitmaps/*.xpm
|
||||
|
||||
src/unix/*.cpp
|
||||
src/unix/*.c
|
||||
|
||||
src/png/*.c
|
||||
src/png/*.h
|
||||
src/png/makefile*
|
||||
src/png/INSTALL
|
||||
src/png/CHANGES
|
||||
src/png/README
|
||||
src/png/TODO
|
||||
src/png/*.1
|
||||
src/png/*.3
|
||||
src/png/*.5
|
||||
src/png/scripts/*.ppc
|
||||
src/png/scripts/*.bat
|
||||
src/png/scripts/makefile*
|
||||
src/png/scripts/*.com
|
||||
src/png/scripts/*.def
|
||||
|
||||
src/zlib/*.c
|
||||
src/zlib/*.h
|
||||
src/zlib/INDEX
|
||||
src/zlib/README
|
||||
src/zlib/ChangeLog
|
||||
src/zlib/configure
|
||||
src/zlib/*.txt
|
||||
src/zlib/makefile*
|
||||
src/zlib/*.com
|
||||
src/zlib/*.3
|
||||
|
||||
src/regex/COPYRIGHT
|
||||
src/regex/makefile*
|
||||
src/regex/README
|
||||
src/regex/WHATSNEW
|
||||
src/regex/mkh
|
||||
src/regex/*.h
|
||||
src/regex/*.ih
|
||||
src/regex/*.c
|
||||
src/regex/tests
|
||||
src/regex/regex.3
|
||||
src/regex/regex.7
|
||||
|
||||
include/wx/*.h
|
||||
include/wx/*.inl
|
||||
include/wx/*.cpp
|
||||
include/wx/protocol/*.h
|
||||
include/wx/wx_setup.vms
|
||||
include/wx/common/*.h
|
||||
include/wx/generic/*.h
|
||||
include/wx/generic/*.xpm
|
||||
include/wx/unix/*.h
|
||||
include/wx/html/*.h
|
||||
include/wx/html/msw/*.bmp
|
||||
include/wx/html/msw/*.ico
|
||||
include/wx/html/msw/*.rc
|
||||
lib/dummy
|
||||
|
||||
tools/gettext/*.*
|
||||
|
||||
bitmaps/xpm/16x16/*.*
|
||||
bitmaps/xpm/32x32/*.*
|
||||
bitmaps/xpm/64x64/*.*
|
||||
bitmaps/xpm/misc/*.*
|
||||
bitmaps/*.*
|
||||
bitmaps/bmp/16x15/*.*
|
||||
bitmaps/bmp/10x8/*.*
|
||||
bitmaps/ico/32x32/*.*
|
||||
|
||||
samples/*.txt
|
||||
samples/configure
|
||||
samples/configure.in
|
||||
|
||||
samples/dialogs/*.h
|
||||
samples/dialogs/*.cpp
|
||||
samples/dialogs/*.def
|
||||
samples/dialogs/*.rc
|
||||
samples/dialogs/makefile*
|
||||
samples/dialogs/*.xbm
|
||||
samples/dialogs/*.xpm
|
||||
samples/dialogs/*.txt
|
||||
samples/dialogs/*.bmp
|
||||
samples/dialogs/*.ico
|
||||
samples/dialogs/*.pro
|
||||
|
||||
samples/minimal/*.cpp
|
||||
samples/minimal/*.h
|
||||
samples/minimal/*.def
|
||||
samples/minimal/makefile*
|
||||
samples/minimal/*.xbm
|
||||
samples/minimal/*.xpm
|
||||
samples/minimal/*.ico
|
||||
samples/minimal/*.rc
|
||||
samples/minimal/*.pro
|
||||
|
||||
samples/widgets/*.cpp
|
||||
samples/widgets/*.h
|
||||
samples/widgets/makefile*
|
||||
samples/widgets/*.rc
|
||||
samples/widgets/*.def
|
||||
samples/widgets/*.ico
|
||||
samples/widgets/*.xpm
|
||||
samples/widgets/*.txt
|
||||
samples/widgets/*.bmp
|
||||
samples/widgets/*.pro
|
||||
samples/widgets/icons/*.xpm
|
||||
|
||||
lib/wx*.def
|
||||
|
||||
docs/msw/*.txt
|
||||
|
||||
src/makeb32.env
|
||||
src/makeprog.b32
|
||||
src/makelib.b32
|
||||
src/makebcc.env
|
||||
src/makeprog.bcc
|
||||
src/makelib.bcc
|
||||
src/makemsc.env
|
||||
src/makewat.env
|
||||
src/makeprog.wat
|
||||
src/makelib.wat
|
||||
src/makesc.env
|
||||
src/makevc.env
|
||||
src/makeprog.vc
|
||||
src/makelib.vc
|
||||
src/makeg95.env
|
||||
src/makeprog.g95
|
||||
src/makelib.g95
|
||||
src/maketwin.env
|
||||
src/makefile.bcc
|
||||
src/makefile.vc
|
||||
src/*.bat
|
||||
|
||||
src/msw/*.cpp
|
||||
src/msw/*.h
|
||||
src/msw/makefile.*
|
||||
src/msw/makebase.b32
|
||||
src/msw/makeuniv.b32
|
||||
src/msw/*.lst
|
||||
src/msw/*.def
|
||||
src/msw/*.inc
|
||||
src/msw/winestub.c
|
||||
src/msw/gsocket.c
|
||||
src/msw/gsockmsw.c
|
||||
src/msw/version.rc
|
||||
|
||||
src/msw/ole/*.cpp
|
||||
src/msw/*.prj
|
||||
|
||||
include/wx/msw/*.h
|
||||
include/wx/msw/*.rc
|
||||
include/wx/msw/ctl3d/*.h
|
||||
include/wx/msw/gnuwin32/*.h
|
||||
include/wx/msw/gnuwin32/*.def
|
||||
include/wx/msw/gnuwin32/gl/*.h
|
||||
include/wx/msw/ole/*.h
|
||||
include/wx/msw/*.cur
|
||||
include/wx/msw/*.ico
|
||||
include/wx/msw/*.bmp
|
||||
|
||||
Makefile.in
|
||||
src/regex/Makefile.in
|
||||
samples/Makefile.in
|
||||
|
||||
src/wxWindows.dsp
|
||||
src/wxWindows.dsw
|
||||
src/wxUniv.dsp
|
||||
src/wxUniv.dsw
|
||||
src/wxBase.dsp
|
||||
src/wxBase.dsw
|
||||
|
||||
src/jpeg/jpeg.dsp
|
||||
src/jpeg/jpeg.dsw
|
||||
|
||||
src/tiff/tiff.dsp
|
||||
src/tiff/tiff.dsw
|
||||
|
||||
src/zlib/zlib.dsp
|
||||
src/zlib/zlib.dsw
|
||||
|
||||
src/png/png.dsp
|
||||
src/png/png.dsw
|
||||
|
||||
src/regex/regex.dsp
|
||||
src/regex/regex.dsw
|
||||
|
||||
samples/samples.dsw
|
||||
|
||||
samples/dialogs/dialogs.dsp
|
||||
|
||||
samples/minimal/minimal.dsp
|
||||
samples/minimal/minimalUniv.dsp
|
||||
|
||||
samples/widgets/widgets.dsp
|
||||
samples/widgets/widgetsUniv.dsp
|
||||
|
||||
@@ -1,57 +0,0 @@
|
||||
#
|
||||
# To make this Bourne shell script operative apply once:
|
||||
# chmod 700 namedown
|
||||
# rehash
|
||||
|
||||
case $# in
|
||||
|
||||
0)
|
||||
echo
|
||||
echo "====================================================="
|
||||
echo "namedown, Convert file names to lower case and ; to ."
|
||||
echo "By Hannu Hirvonen and Timo Salmi Sun 18-Mar-2001"
|
||||
echo "http://www.uwasa.fi/~ts/ and http://www.uwasa.fi/~hh/"
|
||||
echo "====================================================="
|
||||
echo
|
||||
echo "Usage: namedown [FILENAME(S)]"
|
||||
echo
|
||||
echo "Converts file names only. Directory names are not affected"
|
||||
echo
|
||||
;;
|
||||
|
||||
*)
|
||||
for oldname in $*
|
||||
do
|
||||
newfile=`basename ${oldname} | tr '[A-Z;]' '[a-z.]'`
|
||||
dirname=`dirname ${oldname}`
|
||||
newname="${dirname}/${newfile}"
|
||||
oldname="${dirname}/`basename ${oldname}`"
|
||||
#Don't convert a file into itself
|
||||
if [ "${newname}" = "${oldname}" ]; then
|
||||
echo > /dev/null
|
||||
#Don't convert directory names
|
||||
elif [ -d "${oldname}" ]; then
|
||||
mv "${oldname}" "${oldname}.bak"
|
||||
mv "${oldname}.bak" "${newname:-${oldname}}"
|
||||
# echo "Directory ${oldname} converted to directory ${newname:-${oldname}}"
|
||||
# echo /dev/null
|
||||
#Don't convert if the file does not exist
|
||||
elif [ ! -f "${oldname}" ]; then
|
||||
echo > /dev/null
|
||||
#Don't overwrite existing files
|
||||
# elif [ -f "${newname}" ]; then
|
||||
echo "${oldname} not converted, file ${newname} already exists" 2>&1
|
||||
#Don't move to subdirectories if they happen to exist
|
||||
elif [ -d "${newname}" ]; then
|
||||
echo "${oldname} not converted, directory ${newname} already exists" 2>&1
|
||||
#Do it
|
||||
else
|
||||
mv "${oldname}" "${oldname}.bak"
|
||||
mv "${oldname}.bak" "${newname:-${oldname}}"
|
||||
# echo "File ${oldname} converted to file ${newname:-${oldname}}"
|
||||
fi
|
||||
done
|
||||
;;
|
||||
esac
|
||||
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
utils/nplugin/make*.*
|
||||
utils/nplugin/src/*.cpp
|
||||
utils/nplugin/src/*.h
|
||||
utils/nplugin/src/*.rc
|
||||
utils/nplugin/src/*.def
|
||||
utils/nplugin/src/makefile.*
|
||||
utils/nplugin/src/*.txt
|
||||
utils/nplugin/samples/simple/*.cpp
|
||||
utils/nplugin/samples/simple/*.h
|
||||
utils/nplugin/samples/simple/*.rc
|
||||
utils/nplugin/samples/simple/*.def
|
||||
utils/nplugin/samples/simple/makefile.*
|
||||
utils/nplugin/samples/simple/*.txt
|
||||
utils/nplugin/samples/gui/*.cpp
|
||||
utils/nplugin/samples/gui/*.h
|
||||
utils/nplugin/samples/gui/*.rc
|
||||
utils/nplugin/samples/gui/*.def
|
||||
utils/nplugin/samples/gui/makefile.*
|
||||
utils/nplugin/samples/gui/*.txt
|
||||
utils/nplugin/docs/*.tex
|
||||
utils/nplugin/docs/*.txt
|
||||
utils/nplugin/docs/*.hpj
|
||||
utils/nplugin/docs/*.eps
|
||||
utils/nplugin/docs/*.ps
|
||||
utils/nplugin/docs/*.ini
|
||||
utils/nplugin/docs/*.cnt
|
||||
utils/nplugin/docs/*.hlp
|
||||
utils/nplugin/lib/dummy
|
||||
|
||||
@@ -1,99 +0,0 @@
|
||||
contrib/docs/html/ogl/*.htm
|
||||
contrib/docs/html/ogl/*.gif
|
||||
contrib/docs/html/ogl/*.png
|
||||
contrib/docs/winhelp/ogl.hlp
|
||||
contrib/docs/winhelp/ogl.cnt
|
||||
contrib/docs/pdf/ogl.pdf
|
||||
|
||||
contrib/docs/latex/ogl/*.tex
|
||||
contrib/docs/latex/ogl/*.sty
|
||||
contrib/docs/latex/ogl/*.bib
|
||||
contrib/docs/latex/ogl/*.hpj
|
||||
contrib/docs/latex/ogl/*.ini
|
||||
contrib/docs/latex/ogl/*.txt
|
||||
contrib/docs/latex/ogl/*.cnt
|
||||
contrib/docs/latex/ogl/*.eps
|
||||
contrib/docs/latex/ogl/*.bmp
|
||||
contrib/docs/latex/ogl/*.gif
|
||||
contrib/docs/latex/ogl/*.wmf
|
||||
|
||||
contrib/src/ogl/*.cpp
|
||||
contrib/src/ogl/*.h
|
||||
contrib/src/ogl/*.rc
|
||||
contrib/src/ogl/*.def
|
||||
contrib/src/ogl/*.xbm
|
||||
contrib/src/ogl/*.xpm
|
||||
contrib/src/ogl/makefile.vc
|
||||
contrib/src/ogl/makefile.bcc
|
||||
contrib/src/ogl/makefile.b32
|
||||
contrib/src/ogl/makefile.wat
|
||||
contrib/src/ogl/makefile.g95
|
||||
contrib/src/ogl/makefile.unx
|
||||
contrib/src/ogl/makefile.vms
|
||||
contrib/src/ogl/Makefile.in
|
||||
contrib/src/ogl/*.txt
|
||||
contrib/src/ogl/*.ico
|
||||
contrib/src/ogl/*.bmp
|
||||
|
||||
contrib/include/wx/ogl/*.h
|
||||
|
||||
contrib/samples/ogl/ogledit/*.cpp
|
||||
contrib/samples/ogl/ogledit/*.h
|
||||
contrib/samples/ogl/ogledit/*.rc
|
||||
contrib/samples/ogl/ogledit/*.def
|
||||
contrib/samples/ogl/ogledit/*.xbm
|
||||
contrib/samples/ogl/ogledit/makefile.vc
|
||||
contrib/samples/ogl/ogledit/makefile.bcc
|
||||
contrib/samples/ogl/ogledit/makefile.b32
|
||||
contrib/samples/ogl/ogledit/makefile.wat
|
||||
contrib/samples/ogl/ogledit/makefile.g95
|
||||
contrib/samples/ogl/ogledit/makefile.unx
|
||||
contrib/samples/ogl/ogledit/makefile.vms
|
||||
contrib/samples/ogl/ogledit/Makefile.in
|
||||
contrib/samples/ogl/ogledit/*.txt
|
||||
contrib/samples/ogl/ogledit/*.ico
|
||||
contrib/samples/ogl/ogledit/*.bmp
|
||||
contrib/samples/ogl/ogledit/*.xpm
|
||||
contrib/samples/ogl/ogledit/*.dsp
|
||||
contrib/samples/ogl/ogledit/bitmaps/*.bmp
|
||||
contrib/samples/ogl/ogledit/bitmaps/*.gif
|
||||
contrib/samples/ogl/ogledit/bitmaps/*.xbm
|
||||
contrib/samples/ogl/ogledit/bitmaps/*.xpm
|
||||
|
||||
contrib/samples/ogl/studio/*.cpp
|
||||
contrib/samples/ogl/studio/*.h
|
||||
contrib/samples/ogl/studio/*.rc
|
||||
contrib/samples/ogl/studio/*.def
|
||||
contrib/samples/ogl/studio/*.xbm
|
||||
contrib/samples/ogl/studio/makefile.vc
|
||||
contrib/samples/ogl/studio/makefile.bcc
|
||||
contrib/samples/ogl/studio/makefile.b32
|
||||
contrib/samples/ogl/studio/makefile.wat
|
||||
contrib/samples/ogl/studio/makefile.g95
|
||||
contrib/samples/ogl/studio/makefile.unx
|
||||
contrib/samples/ogl/studio/makefile.vms
|
||||
contrib/samples/ogl/studio/Makefile.in
|
||||
contrib/samples/ogl/studio/*.txt
|
||||
contrib/samples/ogl/studio/*.ico
|
||||
contrib/samples/ogl/studio/*.bmp
|
||||
contrib/samples/ogl/studio/*.xpm
|
||||
contrib/samples/ogl/studio/*.wxr
|
||||
contrib/samples/ogl/studio/*.dsp
|
||||
contrib/samples/ogl/studio/bitmaps/*.bmp
|
||||
contrib/samples/ogl/studio/bitmaps/*.gif
|
||||
contrib/samples/ogl/studio/bitmaps/*.xbm
|
||||
contrib/samples/ogl/studio/bitmaps/*.xpm
|
||||
contrib/samples/ogl/studio/bitmaps/*.ico
|
||||
contrib/samples/ogl/studio/manual/*.tex
|
||||
contrib/samples/ogl/studio/manual/*.ini
|
||||
contrib/samples/ogl/studio/manual/*.gif
|
||||
contrib/samples/ogl/studio/manual/*.bmp
|
||||
contrib/samples/ogl/studio/manual/*.htm
|
||||
contrib/samples/ogl/studio/manual/*.hlp
|
||||
contrib/samples/ogl/studio/manual/*.cnt
|
||||
contrib/samples/ogl/studio/manual/Makefile
|
||||
|
||||
distrib/msw/ogl.rsp
|
||||
distrib/msw/zipogl.bat
|
||||
|
||||
|
||||
@@ -1,35 +0,0 @@
|
||||
lib/dummy
|
||||
|
||||
docs/licence.txt
|
||||
docs/os2/*.txt
|
||||
|
||||
distrib/msw/*.rsp
|
||||
distrib/msw/*.bat
|
||||
|
||||
src/makeva.env
|
||||
src/makefile.va
|
||||
src/makeprog.va
|
||||
|
||||
src/common/dosyacc.c
|
||||
src/common/doslex.c
|
||||
src/common/y_tab.c
|
||||
src/common/lex_yy.c
|
||||
src/common/*.rc
|
||||
|
||||
src/os2/*.cpp
|
||||
src/os2/*.c
|
||||
src/os2/makefile.va
|
||||
src/os2/*.def
|
||||
src/os2/*.lst
|
||||
src/os2/*.sh
|
||||
src/*.icc
|
||||
|
||||
include/wx/os2/*.h
|
||||
include/wx/os2/*.rc
|
||||
include/wx/os2/*.res
|
||||
include/wx/msw/*.cur
|
||||
include/wx/msw/*.ico
|
||||
include/wx/msw/*.bmp
|
||||
|
||||
samples/minimal/Minimal.icc
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user