diff options
Diffstat (limited to 'config.win')
-rw-r--r-- | config.win | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config.win b/config.win new file mode 100644 index 0000000..0259106 --- /dev/null +++ b/config.win | |||
@@ -0,0 +1,17 @@ | |||
1 | # Installation directories | ||
2 | # System's libraries directory (where binary libraries are installed) | ||
3 | LUA_LIBDIR= c:/lua51/lib | ||
4 | # Lua includes directory | ||
5 | LUA_INC= c:/lua51/include | ||
6 | # Lua library | ||
7 | LUA_LIB= c:/lua51/bin/lua51.lib | ||
8 | |||
9 | LIBNAME= $T.dll | ||
10 | |||
11 | # Compilation directives | ||
12 | WARN= /O2 /Wall | ||
13 | INCS= /I$(LUA_INC) | ||
14 | CFLAGS= $(WARN) $(INCS) | ||
15 | CC= cl | ||
16 | |||
17 | # $Id: config.win,v 1.1 2006/12/04 15:28:53 mascarenhas Exp $ | ||