lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


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