mirror of
https://github.com/reactos/RosBE.git
synced 2024-11-23 11:29:44 +00:00
5c651a0491
- HTTP -> HTTPS in updater script - Fix Updater script by granting access rights for it. ROSBE-129 - Remove sSVN and it's SVN binaries being useless now. - Update changelog showing the binary updates. - Update Copyright header year -> 2018 - 2.1.5 -> 2.1.6
29 lines
746 B
Batchfile
29 lines
746 B
Batchfile
::
|
|
:: PROJECT: RosBE - ReactOS Build Environment for Windows
|
|
:: LICENSE: GNU General Public License v2. (see LICENSE.txt)
|
|
:: FILE: Root/Remakex.cmd
|
|
:: PURPOSE: Fully re-make one or several modules multithreaded.
|
|
:: COPYRIGHT: Copyright 2018 Daniel Reimer <reimer.daniel@freenet.de>
|
|
::
|
|
|
|
@echo off
|
|
if not defined _ROSBE_DEBUG set _ROSBE_DEBUG=0
|
|
if %_ROSBE_DEBUG% == 1 (
|
|
@echo on
|
|
)
|
|
|
|
if not "%ROS_ARCH%" == "" (
|
|
title 'Remake %*' started: %TIMERAW% (%ROS_ARCH%)
|
|
) else (
|
|
title 'Remake %*' started: %TIMERAW% (MSVC %_ROSBE_MSVCARCH%)
|
|
)
|
|
|
|
:WHILE
|
|
if "%1" == "" goto :EOF
|
|
call "%_ROSBE_BASEDIR%\Makex.cmd" %1_clean %1
|
|
shift /1
|
|
echo.
|
|
GOTO :WHILE %*
|
|
|
|
title ReactOS Build Environment %_ROSBE_VERSION%
|