2002-12-27 14:53:06 +00:00
|
|
|
@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
|
|
|
|
|
2003-01-18 15:55:07 +00:00
|
|
|
copy ..\posix\apps\baresh\baresh.exe %ROS_INSTALL%\bin
|
|
|
|
copy ..\posix\apps\posixw32\posixw32.exe %ROS_INSTALL%\bin
|
|
|
|
copy ..\posix\server\psxss.exe %ROS_INSTALL%\system32
|
|
|
|
copy ..\posix\lib\psxdll\psxdll.dll %ROS_INSTALL%\system32
|
|
|
|
copy ..\posix\lib\psxdll\psxdll.map %ROS_INSTALL%\symbols
|
|
|
|
copy ..\posix\lib\psxx\psxx.dll %ROS_INSTALL%\system32
|
|
|
|
copy ..\posix\lib\psxx\psxx.map %ROS_INSTALL%\symbols
|