mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
d55087f86e
svn path=/trunk/; revision=4031
23 lines
650 B
Batchfile
23 lines
650 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 ..\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
|