X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f2071dda0b6016afed8777a4dd23f0ada537026b..42d67b6162c11887192c83db7df3f19f29895570:/distrib/msw/tmake/makeall.bat diff --git a/distrib/msw/tmake/makeall.bat b/distrib/msw/tmake/makeall.bat index 6c82dab153..65760aa864 100755 --- a/distrib/msw/tmake/makeall.bat +++ b/distrib/msw/tmake/makeall.bat @@ -25,6 +25,8 @@ echo "Please set WX environment variable!" goto end :ok +rem Let's assume that you have tmake in your PATH but let override it with +rem TMAKE env var set TM=tmake if "x%TMAKE%" == "x" goto skip2 set TM=%TMAKE% @@ -34,20 +36,37 @@ set TM=%TMAKE% 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 Visual C++ 6.0 wxBase C++ (32 bits)... +%TM% -t basevc wxwin.pro -o %WXDIR%\src\msw\makebase.vc +echo Generating for Visual C++ 6.0 wxWindows.dsp +%TM% -t vc6msw wxwin.pro -o %WXDIR%\src\wxWindows.dsp +echo Generating for Visual C++ 6.0 wxUniv.dsp +%TM% -t vc6univ wxwin.pro -o %WXDIR%\src\wxUniv.dsp +echo Generating for Visual C++ 6.0 wxBase.dsp +%TM% -t vc6base wxwin.pro -o %WXDIR%\src\wxBase.dsp echo Generating for Visual C++ 4.0... -%TM% -t vc wxwin.pro -o makefile.vc +%TM% -t vc wxwin.pro -o %WXDIR%\src\msw\makefile.vc echo Generating for Borland C++ (32 bits)... -%TM% -t b32 wxwin.pro -o makefile.b32 +%TM% -t b32 wxwin.pro -o %WXDIR%\src\msw\makefile.b32 +%TM% -t b32univ wxwin.pro -o %WXDIR%\src\msw\makeuniv.b32 echo Generating for Visual C++ 1.52... -%TM% -t dos wxwin.pro -o makefile.dos +%TM% -t dos wxwin.pro -o %WXDIR%\src\msw\makefile.dos echo Generating for Borland C++ (16 bits)... -%TM% -t bcc wxwin.pro -o makefile.bcc +%TM% -t bcc wxwin.pro -o %WXDIR%\src\msw\makefile.bcc echo Generating for Cygwin/Mingw32 -%TM% -t g95 wxwin.pro -o makefile.g95 +%TM% -t g95 wxwin.pro -o %WXDIR%\src\msw\makefile.g95 echo Generating for Symantec C++... -%TM% -t sc wxwin.pro -o makefile.sc +%TM% -t sc wxwin.pro -o %WXDIR%\src\msw\makefile.sc echo Generating for Watcom C++... -%TM% -t wat wxwin.pro -o makefile.wat - +%TM% -t wat wxwin.pro -o %WXDIR%\src\msw\makefile.wat +echo Generating for Unix and Configure... +%TM% -t gtk wxwin.pro -o %WXDIR%\src\gtk\files.lst +%TM% -t mgl wxwin.pro -o %WXDIR%\src\mgl\files.lst +%TM% -t micro wxwin.pro -o %WXDIR%\src\microwin\files.lst +%TM% -t univ wxwin.pro -o %WXDIR%\src\univ\files.lst +%TM% -t msw wxwin.pro -o %WXDIR%\src\msw\files.lst +%TM% -t mac wxwin.pro -o %WXDIR%\src\mac\files.lst +%TM% -t motif wxwin.pro -o %WXDIR%\src\motif\files.lst +%TM% -t x11 wxwin.pro -o %WXDIR%\src\x11\files.lst +%TM% -t os2 wxwin.pro -o %WXDIR%\src\os2\files.lst :end