mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
3f13766f16
svn path=/trunk/; revision=3947
22 lines
587 B
Batchfile
22 lines
587 B
Batchfile
@echo off
|
|
if "%1" == "" goto NoParameter
|
|
set ROS_INSTALL=%1
|
|
goto Install
|
|
:NoParameter
|
|
set ROS_INSTALL=c:\reactos
|
|
:Install
|
|
echo Installing to %ROS_INSTALL%
|
|
@echo off
|
|
|
|
md %ROS_INSTALL%
|
|
md %ROS_INSTALL%\bin
|
|
md %ROS_INSTALL%\symbols
|
|
md %ROS_INSTALL%\system32
|
|
|
|
copy apps\baresh\baresh.exe %ROS_INSTALL%\bin
|
|
copy apps\posixw32\posixw32.exe %ROS_INSTALL%\bin
|
|
copy server\psxss.exe %ROS_INSTALL%\system32
|
|
copy lib\psxdll\psxdll.dll %ROS_INSTALL%\system32
|
|
copy lib\psxdll\psxdll.map %ROS_INSTALL%\symbols
|
|
copy lib\psxx\psxx.dll %ROS_INSTALL%\system32
|
|
copy lib\psxx\psxx.map %ROS_INSTALL%\symbols
|