]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/msw/tmake/makeall.bat
Added a Python-specific Append method to the wxListCtrl
[wxWidgets.git] / distrib / msw / tmake / makeall.bat
index 4ac471f56c45540bbb7195afb0b6f64ae6e07aec..c761ef7ec9f4ea096cd56ee80b9b0ebf689c1f25 100755 (executable)
@@ -11,6 +11,9 @@ rem tmake. The environment variable WX or WXWIN should be defined and contain
 rem the root directory of wxWindows installation. TMAKE program should be in
 rem path or, alternatively, TMAKE environment variable should be set.
 
+rem set tmakecmd=E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake
+set tmakecmd=d:\programs\tmake\bin\tmake
+
 if "x%WX%" == "x" goto skip
 set WXDIR=%WX%
 goto ok
@@ -35,21 +38,36 @@ rem this loop just doesn't want to work under command.com and cmd.exe and
 rem 4nt.exe, so I preferred to unroll it.
 rem for %%c in (b32 bcc dos g95 sc vc wat) %TM% -t %c% wxwin.pro -o %WXDIR%\src\msw\makefile.%c%
 
+echo Generating for for Visual C++ 6.0 wxBase C++ (32 bits)...
+%tmakecmd% -t basevc wxwin.pro -o %WXDIR%\src\msw\makebase.vc
+echo Generating for for Visual C++ 6.0 wxWindows.dsp
+%tmakecmd% -t vc6msw wxwin.pro -o %WXDIR%\src\wxWindows.dsp
+echo Generating for for Visual C++ 6.0 wxUniv.dsp
+%tmakecmd% -t vc6univ wxwin.pro -o %WXDIR%\src\wxUniv.dsp
+echo Generating for for Visual C++ 6.0 wxBase.dsp
+%tmakecmd% -t vc6base wxwin.pro -o %WXDIR%\src\wxBase.dsp
 echo Generating for Visual C++ 4.0...
-E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake -t vc wxwin.pro -o makefile.vc
+%tmakecmd% -t vc wxwin.pro -o %WXDIR%\src\msw\makefile.vc
 echo Generating for Borland C++ (32 bits)...
-E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake -t b32 wxwin.pro -o makefile.b32
+%tmakecmd% -t b32 wxwin.pro -o %WXDIR%\src\msw\makefile.b32
 echo Generating for Visual C++ 1.52...
-E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake -t dos wxwin.pro -o makefile.dos
+%tmakecmd% -t dos wxwin.pro -o %WXDIR%\src\msw\makefile.dos
 echo Generating for Borland C++ (16 bits)...
-E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake -t bcc wxwin.pro -o makefile.bcc
+%tmakecmd% -t bcc wxwin.pro -o %WXDIR%\src\msw\makefile.bcc
 echo Generating for Cygwin/Mingw32
-E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake -t g95 wxwin.pro -o makefile.g95
+%tmakecmd% -t g95 wxwin.pro -o %WXDIR%\src\msw\makefile.g95
 echo Generating for Symantec C++...
-E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake -t sc wxwin.pro -o makefile.sc
+%tmakecmd% -t sc wxwin.pro -o %WXDIR%\src\msw\makefile.sc
 echo Generating for Watcom C++...
-E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake -t wat wxwin.pro -o makefile.wat
-echo Generating for wxGTK...
-E:\Perl\5.00471\bin\MSWin32-x86\perl.exe g:\Unix\tmake\bin\tmake -t gtk wxwin.pro -o Makefile
-
+%tmakecmd% -t wat wxwin.pro -o %WXDIR%\src\msw\makefile.wat
+echo Generating for Unix and Configure...
+%tmakecmd% -t gtk wxwin.pro -o %WXDIR%\src\gtk\files.lst
+%tmakecmd% -t mgl wxwin.pro -o %WXDIR%\src\mgl\files.lst
+%tmakecmd% -t micro wxwin.pro -o %WXDIR%\src\micro\files.lst
+%tmakecmd% -t univ wxwin.pro -o %WXDIR%\src\univ\files.lst
+%tmakecmd% -t msw wxwin.pro -o %WXDIR%\src\msw\files.lst
+%tmakecmd% -t mac wxwin.pro -o %WXDIR%\src\mac\files.lst
+%tmakecmd% -t motif wxwin.pro -o %WXDIR%\src\motif\files.lst
+%tmakecmd% -t x11 wxwin.pro -o %WXDIR%\src\x11\files.lst
+%tmakecmd% -t os2 wxwin.pro -o %WXDIR%\src\os2\files.lst
 :end