summaryrefslogtreecommitdiff
path: root/bin10
diff options
context:
space:
mode:
Diffstat (limited to 'bin10')
-rw-r--r--bin10/pascal32.bat15
-rw-r--r--bin10/pascal64.bat14
2 files changed, 27 insertions, 2 deletions
diff --git a/bin10/pascal32.bat b/bin10/pascal32.bat
index 3edb4664e1..17db2ba432 100644
--- a/bin10/pascal32.bat
+++ b/bin10/pascal32.bat
@@ -4,32 +4,45 @@ pushd ..\plugins
pushd Actman
call make.bat fpc 10
+if errorlevel 1 goto :Error
popd
pushd ImportTXT
call make.bat fpc 10
+if errorlevel 1 goto :Error
popd
pushd mRadio
call make.bat fpc 10
+if errorlevel 1 goto :Error
popd
pushd QuickSearch
call make.bat fpc 10
+if errorlevel 1 goto :Error
popd
pushd ShlExt
call make.bat fpc 10
+if errorlevel 1 goto :Error
popd
pushd Watrack
call make.bat fpc 10
+if errorlevel 1 goto :Error
cd icons
call makeicons.bat fpc 10
+if errorlevel 1 goto :Error
popd
pushd Dbx_mmap_SA\Cryptors\Athena
call make.bat fpc 10
+if errorlevel 1 goto :Error
popd
-popd \ No newline at end of file
+popd
+goto :eof
+
+:Error
+echo ============================= FAIL! =============================
+exit
diff --git a/bin10/pascal64.bat b/bin10/pascal64.bat
index 2ef0d764de..b3772d3a81 100644
--- a/bin10/pascal64.bat
+++ b/bin10/pascal64.bat
@@ -4,28 +4,40 @@ pushd ..\plugins
pushd Actman
call make.bat fpc64 10
+if errorlevel 1 goto :Error
popd
pushd mRadio
call make.bat fpc64 10
+if errorlevel 1 goto :Error
popd
pushd QuickSearch
call make.bat fpc64 10
+if errorlevel 1 goto :Error
popd
pushd ShlExt
call make.bat fpc64 10
+if errorlevel 1 goto :Error
popd
pushd Watrack
call make.bat fpc64 10
+if errorlevel 1 goto :Error
cd icons
call makeicons.bat fpc64 10
+if errorlevel 1 goto :Error
popd
pushd Dbx_mmap_SA\Cryptors\Athena
call make.bat fpc64 10
+if errorlevel 1 goto :Error
popd
-popd \ No newline at end of file
+popd
+goto :eof
+
+:Error
+echo ============================= FAIL! =============================
+exit