Hi,
i don't know if its an error in borlands make.exe or in the make-file
provided by you....
i have a batch for compiling make-files using the freecommand-line-tools
from borland:
@echo off
rem set bcc_path=c:\borland\bcc55
set bcc_path=%~dp0
echo %bcc_path%
SET PATH="%PATH%;%bcc_path%bin"
%~d1
cd "%~p1"
echo -I"%bcc_path%include" > "%bcc_path%bin\bcc32.cfg"
echo -L"%bcc_path%lib" >> "%bcc_path%bin\bcc32.cfg"
echo -L"%bcc_path%lib" > "%bcc_path%bin\ilink32.cfg"
rem for compiling source without makefile use the following lin:
rem "%bcc_path%bin\bcc32.exe" -I"%bcc_path%include" -L"%bcc_path%lib" %1
"%bcc_path%bin\make.exe" -f %1
IF errorlevel=1 GOTO fail
GOTO end
:fail
ECHO.
ECHO There where errors found while compiling your program.
ECHO.
ECHO Could not compile to .exe...
ECHO.
:end
PAUSE
it works when the compiler/linker is not in a folder containing space(s)
in the path. the batch is located in bcc-root-dir (which contains the
folders "bin", "lib" and "include"). to compile dragging the make-file
into the batch-file.
Do You know what i can do make this also working?
Greetings Frank
_______________________________________________
Scite-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scite-interest