Re: Compiling with the free Borland compiler
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Compiling with the free Borland compiler
- From: David <dcuny@...>
- Date: 2002年1月22日 05:06:00 -0800
I tried hacking the existing Makefiles, but the Borland make isn't standard.
For example, it wants
!include ...
instead of
include
And rm has to be changed, etc...
I decided to try a different angle, and instead of copying the files, just
specify the include directories:
bcc32 -c -I"include" src\lib\*.c src\*.c src\lua\*.c
bcc32 src\lua\lua.c *.obj -I"include;src;src\lib" -olua.exe
del *.obj
del *.tds
The first line appears to work fine, but the second line causes me no end of
grief. If anyone has a clue what I'm doing wrong, could you send a clue my
way?
Thanks.
-- David Cuny