config.win 438 B

1234567891011121314151617181920
  1. LUA_VERSION= 5.1
  2. # Installation directories
  3. # System's libraries directory (where binary libraries are installed)
  4. LUA_LIBDIR= "c:\lua$(LUA_VERSION)"
  5. # Lua includes directory
  6. LUA_INC= "c:\lua$(LUA_VERSION)\include"
  7. # Lua library
  8. LUA_LIB= "c:\lua$(LUA_VERSION)\lua$(LUA_VERSION).lib"
  9. # Compilation directives
  10. WARN= /O2
  11. INCS= /I$(LUA_INC)
  12. CFLAGS= /MD $(WARN) $(INCS)
  13. CC= cl
  14. # $Id: config.win,v 1.7 2008/03/25 17:39:29 mascarenhas Exp $