[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Compiling with the free Borland compiler
- From: David <dcuny@...>
- Date: Tue, 22 Jan 2002 01:42:19 -0800
OK, I got the thing to compile with the Borland compiler. It's only slightly
different that what Phillipe suggested:
1. Take everything from
/include
/src
/src/lib
/src/lua
and place them into a single directory.
2. Run the following commands:
bcc32 -c *.c
bcc32 lua.c *.obj -olua.exe
del *.obj
del *.tds
It shouldn't be to difficult to turn this into a real makefile. I'll take
another crack at it...
-- David Cuny