mozers schrieb:
Frank wrote:
FW> i have a batch for compiling make-files using the freecommand-line-tools
FW> from borland:

I too use it.
Thanks for idea. Works well.
-----------------------------
@echo off
set bcc_path=C:\Borland\bcc55\
my configuration uses relative path starting from the dir where the compile.bat lies...why have you changed it?

i you use the original i've posted on top of your bcc-directory you can include the command to scites tools-menu for compiling every mak file not only scites one ;)

set PATH=%PATH%;%bcc_path%Bin

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"

the last 3 lines recreate bcc32's config files for use with changing paths (e.g. usb-stick on different systems). if you use a fixed bcc_path (so i see) then you don't need to recreate these files.

cd scintilla\win32
make -l -fscintilla.mak
cd ..\..
cd scite\win32
make -l -fscite.mak
-----------------------------
I place a compile.bat near to dirs Scintilla and Scite.
I open him in SciTE and press F5.
Result it is convenient to look in output pane.


any suggestions about the problem with the spaces??

Frank


_______________________________________________
Scite-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scite-interest

Reply via email to