x cvs_MAIN
authorClaus Gittinger <cg@exept.de>
Tue, 03 Jul 2018 09:41:06 +0200
branchcvs_MAIN
changeset 843 1a791d41fa63
parent 842 b5eb85f53c37
child 844 a3d9f2dd3648
x
bmake.bat
--- a/bmake.bat	Tue Jul 03 09:41:04 2018 +0200
+++ b/bmake.bat	Tue Jul 03 09:41:06 2018 +0200
@@ -1,6 +1,57 @@
-pushd common
-call bmake.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
-popd 
-pushd mercurial
-call bmake.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
-popd
+@REM -------
+@REM make using Borland bcc32
+@REM type bmake, and wait...
+@REM do not edit - automatically generated from ProjectDefinition
+@REM -------
+@SET DEFINES=
+
+make.exe -N -f bc.mak  %DEFINES% %*
+
+
+
+@if not exist common goto skip_stx_libscm_common
+@echo "***********************************"
+@echo "Building stx/libscm/common"
+@echo "***********************************"
+@pushd common
+@call bmake %1 %2 || exit /b "%errorlevel%"
+@popd
+@goto done_stx_libscm_common
+:skip_stx_libscm_common
+@echo "###################################"
+@echo "FOLDER MISSING: stx/libscm/common"
+@echo "###################################"
+exit /b 1
+:done_stx_libscm_common
+
+@if not exist mercurial goto skip_stx_libscm_mercurial
+@echo "***********************************"
+@echo "Building stx/libscm/mercurial"
+@echo "***********************************"
+@pushd mercurial
+@call bmake %1 %2 || exit /b "%errorlevel%"
+@popd
+@goto done_stx_libscm_mercurial
+:skip_stx_libscm_mercurial
+@echo "###################################"
+@echo "FOLDER MISSING: stx/libscm/mercurial"
+@echo "###################################"
+exit /b 1
+:done_stx_libscm_mercurial
+
+@if not exist github goto skip_stx_libscm_github
+@echo "***********************************"
+@echo "Building stx/libscm/github"
+@echo "***********************************"
+@pushd github
+@call bmake %1 %2 || exit /b "%errorlevel%"
+@popd
+@goto done_stx_libscm_github
+:skip_stx_libscm_github
+@echo "###################################"
+@echo "FOLDER MISSING: stx/libscm/github"
+@echo "###################################"
+exit /b 1
+:done_stx_libscm_github
+
+