I changed the PSXDLL.DLL version info description to make it different from MS' ...
[reactos.git] / reactos / installwine.bat
1 @echo off
2 REM
3 REM created by sedwards 11/11/01
4 REM
5 if "%1" == "" goto NoParameter
6 set WINE_INSTALL=%1
7 goto Install
8 :NoParameter
9
10 set ROS_INSTALL=c:\reactos
11 set WINE_INSTALL=%ROS_INSTALL%\system32
12 set WINE_APP_INSTALL=%ROS_INSTALL%\bin
13 set WINE_TESTS_INSTALL=%ROS_INSTALL%\test
14
15
16 :Install
17 echo Installing libwine and wine_unicode to %WINE_INSTALL%
18 copy ..\wine\libs\wine\libwine.dll %WINE_INSTALL%
19 copy ..\wine\libs\unicode\wine_unicode.dll %WINE_INSTALL%
20
21
22 echo Installing dlls to %WINE_INSTALL%
23 @echo off
24 copy ..\wine\dlls\comctl32\comctl32.dll %WINE_INSTALL%
25 copy ..\wine\dlls\commdlg\comdlg32.dll %WINE_INSTALL%
26 copy ..\wine\dlls\ddraw\ddraw.dll %WINE_INSTALL%
27 copy ..\wine\dlls\dinput\dinput.dll %WINE_INSTALL%
28 copy ..\wine\dlls\dplay\dplay.dll %WINE_INSTALL%
29 copy ..\wine\dlls\dplayx\dplayx.dll %WINE_INSTALL%
30 copy ..\wine\dlls\mapi32\mapi32.dll %WINE_INSTALL%
31 copy ..\wine\dlls\mpr\mpr.dll %WINE_INSTALL%
32 copy ..\wine\dlls\netapi32\netapi32.dll %WINE_INSTALL%
33 copy ..\wine\dlls\odbc32\odbc32.dll %WINE_INSTALL%
34 copy ..\wine\dlls\ole32\ole32.dll %WINE_INSTALL%
35 copy ..\wine\dlls\oleaut32\oleaut32.dll %WINE_INSTALL%
36 copy ..\wine\dlls\olecli\olecli32.dll %WINE_INSTALL%
37 copy ..\wine\dlls\oledlg\oledlg.dll %WINE_INSTALL%
38 copy ..\wine\dlls\olepro32\olepro32.dll %WINE_INSTALL%
39 copy ..\wine\dlls\olesvr\olesvr32.dll %WINE_INSTALL%
40 copy ..\wine\dlls\psapi\psapi.dll %WINE_INSTALL%
41 copy ..\wine\dlls\richedit\riched32.dll %WINE_INSTALL%
42 copy ..\wine\dlls\rpcrt4\rpcrt4.dll %WINE_INSTALL%
43 copy ..\wine\dlls\serialui\serialui.dll %WINE_INSTALL%
44 copy ..\wine\dlls\shdocvw\shdocvw.dll %WINE_INSTALL%
45 copy ..\wine\dlls\shell32\shell32.dll %WINE_INSTALL%
46 copy ..\wine\dlls\shfolder\shfolder.dll %WINE_INSTALL%
47 copy ..\wine\dlls\shlwapi\shlwapi.dll %WINE_INSTALL%
48 copy ..\wine\dlls\tapi32\tapi32.dll %WINE_INSTALL%
49 copy ..\wine\dlls\urlmon\urlmon.dll %WINE_INSTALL%
50 REM copy ..\wine\dlls\version\version.dll %WINE_INSTALL%
51 copy ..\wine\dlls\wintrust\wintrust.dll %WINE_INSTALL%
52 copy ..\wine\dlls\winspool\winspool.drv %WINE_INSTALL%
53 REM
54 echo Installing winelib programs to %WINE_APP_INSTALL%
55 REM
56 copy ..\wine\programs\clock\winclock.exe %WINE_APP_INSTALL%
57 copy ..\wine\programs\cmdlgtst\cmdlgtst.exe %WINE_APP_INSTALL%
58 copy ..\wine\programs\control\control.exe %WINE_APP_INSTALL%
59 copy ..\wine\programs\notepad\notepad.exe %WINE_APP_INSTALL%
60 copy ..\wine\programs\progman\progman.exe %WINE_APP_INSTALL%
61 copy ..\wine\programs\uninstaller\uninstaller.exe %WINE_APP_INSTALL%
62 copy ..\wine\programs\view\view.exe %WINE_APP_INSTALL%
63 copy ..\wine\programs\wcmd\wcmd.exe %WINE_APP_INSTALL%
64 copy ..\wine\programs\winefile\winefile.exe %WINE_APP_INSTALL%
65 copy ..\wine\programs\winemine\winmine.exe %WINE_APP_INSTALL%
66 copy ..\wine\programs\winver\winver.exe %WINE_APP_INSTALL%
67 REM
68 echo Installing wine tools to %WINE_APP_INSTALL%
69 REM
70 copy ..\wine\tools\winedump\winedump.exe %WINE_APP_INSTALL%
71
72 REM
73 echo Installing Regression tests to %WINE_TESTS_INSTALL%
74 REM
75 copy ..\wine\dlls\advapi32\tests\advapi32_test.exe %WINE_TESTS_INSTALL%
76 copy ..\wine\dlls\comctl32\tests\comctl32_test.exe %WINE_TESTS_INSTALL%
77 copy ..\wine\dlls\dsound\tests\dsound_test.exe %WINE_TESTS_INSTALL%
78 copy ..\wine\dlls\gdi\tests\gdi32_test.exe %WINE_TESTS_INSTALL%
79 copy ..\wine\dlls\kernel\tests\kernel32_test.exe %WINE_TESTS_INSTALL%
80 copy ..\wine\dlls\msvcrt\tests\msvcrt_test.exe %WINE_TESTS_INSTALL%
81 copy ..\wine\dlls\netapi\tests\netapi_test.exe %WINE_TESTS_INSTALL%
82 copy ..\wine\dlls\ntdll\tests\ntdll_test.exe %WINE_TESTS_INSTALL%
83 copy ..\wine\dlls\oleaut32\tests\oleaut32_test.exe %WINE_TESTS_INSTALL%
84 copy ..\wine\dlls\shlwapi\tests\shlwapi_test.exe %WINE_TESTS_INSTALL%
85 copy ..\wine\dlls\urlmon\tests\urlmon_test.exe %WINE_TESTS_INSTALL%
86 copy ..\wine\dlls\user32\tests\user32_test.exe %WINE_TESTS_INSTALL%
87 copy ..\wine\dlls\wininet\tests\wininet_test.exe %WINE_TESTS_INSTALL%
88 copy ..\wine\dlls\winmm\tests\winmm_test.exe %WINE_TESTS_INSTALL%
89 copy ..\wine\dlls\winsock\tests\ws_2_32_test.exe %WINE_TESTS_INSTALL%
90 copy ..\wine\dlls\winspool\tests\winspool_test.exe %WINE_TESTS_INSTALL%
91
92 REM
93 pause