lua-users home
lua-l archive

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


>I'm a Clueless Newbie when it comes to makefiles. I still compile my programs 
>by typing:
>
>   bcc myprog.c -omyprog.exe

Then take everything in src and src/lua and do
	bcc -c *.c -olua.exe

>So instructions like "just modify 'configure' to fit your compiler" assumes 
>more competence than I have.

>Is there a reason that Lua doesn't supply a series of standard makefiles 
>(makefile.unx, makefile.b32, etc) for popular flavors of compilers? 

One reason is that we don't have easy access to other compilers.
This would be the ideal thing for the community to contribute and add to the
wiki.
--lhf