Rem @echo off
-Rem This script compiles wxWindows and some samples/demos with
+Rem This script compiles wxWidgets and some samples/demos with
Rem a range of compilers.
Rem Note that it currently uses batch scripts local to Julian Smart's machine,
Rem to set up the environment correctly.
Rem Not working in 4NT?
Rem if not %@INDEX["%WXDIR%","wx2stable"] == "-1" set FATWXWIN=c:\wx2sta~1\wxwind~1
-echo Full wxWindows path is %FULLWXWIN%, FAT path is %FATWXWIN%
+echo Full wxWidgets path is %FULLWXWIN%, FAT path is %FATWXWIN%
set BUILDDEST=%TEMP%\wxWinBuild
Rem Only carry on if we haven't specified a single target
set CARRYON=0
erase /S *.exe
cd %WXDIR%\contrib\samples
erase /S *.exe
-cd %WXDIR%\utils\dialoged\src
-erase /S *.exe
cd %WXDIR%\utils\tex2rtf\src
erase /S *.exe
-echo Starting wxWindows build at %_TIME, %_DATE
+echo Starting wxWidgets build at %_TIME, %_DATE
Rem First, VC++ 6.
cd %WXDIR%\contrib\src\ogl
nmake -f makefile.vc clean FINAL=1
-Rem Compile Dialog Editor
-cd %WXDIR%\utils\dialoged\src
-nmake -f makefile.vc clean FINAL=1
-nmake -f makefile.vc FINAL=1
-copy *.exe %BUILDDEST%\VC6Release
-nmake -f makefile.vc clean FINAL=1
-
Rem Compile Tex2RTF
cd %WXDIR%\utils\tex2rtf\src
nmake -f makefile.vc clean FINAL=1
cd %WXDIR%\contrib\src\ogl
make -f makefile.b32 clean FINAL=1
-Rem Compile Dialog Editor
-cd %WXDIR%\utils\dialoged\src
-make -f makefile.b32 clean FINAL=1
-make -f makefile.b32 FINAL=1
-copy *.exe %BUILDDEST%\BC55Release
-make -f makefile.b32 clean FINAL=1
-
Rem Compile Tex2RTF
cd %WXDIR%\utils\tex2rtf\src
make -f makefile.b32 clean FINAL=1
cd %WXDIR%\contrib\src\ogl
make -f makefile.g95 clean FINAL=1
-Rem Compile Dialog Editor
-cd %WXDIR%\utils\dialoged\src
-make -f makefile.g95 clean FINAL=1
-make -f makefile.g95 FINAL=1
-copy *.exe %BUILDDEST%\Cygwin11Release
-make -f makefile.g95 clean FINAL=1
-
Rem Compile Tex2RTF
cd %WXDIR%\utils\tex2rtf\src
make -f makefile.g95 clean FINAL=1
cd %WXDIR%\contrib\src\ogl
make -f makefile.g95 clean FINAL=1
-Rem Compile Dialog Editor
-cd %WXDIR%\utils\dialoged\src
-make -f makefile.g95 clean FINAL=1
-make -f makefile.g95 FINAL=1
-copy *.exe %BUILDDEST%\Ming2952Release
-make -f makefile.g95 clean FINAL=1
-
Rem Compile Tex2RTF
cd %WXDIR%\utils\tex2rtf\src
make -f makefile.g95 clean FINAL=1
Rem Set up the environment
call msvc1
-Rem Needs full wxWindows path for making libraries
+Rem Needs full wxWidgets path for making libraries
set WXWIN=%FULLWXWIN%
echo *** VC++ Debug ***
Rem Make one sample, just to make sure Debug mode is OK
cd %WXDIR%\samples\minimal
nmake -f makefile.dos clean
-Rem Needs FAT wxWindows path for making executables
+Rem Needs FAT wxWidgets path for making executables
set WXWIN=%FATWXWIN%
nmake -f makefile.dos
cd %WXDIR%\src\msw
nmake -f makefile.dos cleanall
-Rem Needs full wxWindows path for making libraries
+Rem Needs full wxWidgets path for making libraries
set WXWIN=%FULLWXWIN%
echo *** VC++ Release ***
cd %WXDIR%\samples\minimal
nmake -f makefile.dos clean
nmake -f makefile.dos FINAL=1
-Rem Needs FAT wxWindows path for making executables
+Rem Needs FAT wxWidgets path for making executables
set WXWIN=%FATWXWIN%
nmake -f makefile.dos FINAL=1
copy minimal.exe /S %BUILDDEST%\VC1Release
:end
-echo Finished wxWindows build at %_TIME, %_DATE
+echo Finished wxWidgets build at %_TIME, %_DATE