diff options
author | mascarenhas <mascarenhas> | 2006-12-04 18:24:18 +0000 |
---|---|---|
committer | mascarenhas <mascarenhas> | 2006-12-04 18:24:18 +0000 |
commit | 57622411a9e616016de31da416ec706b27f6a8be (patch) | |
tree | c7f6ca341c40ee6a644afd1e6f756c256e17f1e1 /config.win | |
parent | 67c2187e9af4ca88aa864667a54502d01e01ddbd (diff) | |
download | luafilesystem-57622411a9e616016de31da416ec706b27f6a8be.tar.gz luafilesystem-57622411a9e616016de31da416ec706b27f6a8be.tar.bz2 luafilesystem-57622411a9e616016de31da416ec706b27f6a8be.zip |
Windows Makefile and config
Diffstat (limited to 'config.win')
-rw-r--r-- | config.win | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,17 +1,17 @@ | |||
1 | # Installation directories | 1 | # Installation directories |
2 | # System's libraries directory (where binary libraries are installed) | 2 | # System's libraries directory (where binary libraries are installed) |
3 | LUA_LIBDIR= c:/lua51/lib | 3 | LUA_LIBDIR= c:\lua51\lib |
4 | # Lua includes directory | 4 | # Lua includes directory |
5 | LUA_INC= c:/lua51/include | 5 | LUA_INC= c:\lua51\include |
6 | # Lua library | 6 | # Lua library |
7 | LUA_LIB= c:/lua51/bin/lua51.lib | 7 | LUA_LIB= c:\lua51\bin\lua5.1.lib |
8 | 8 | ||
9 | LIBNAME= $T.dll | 9 | LIBNAME= $T.dll |
10 | 10 | ||
11 | # Compilation directives | 11 | # Compilation directives |
12 | WARN= /O2 /Wall | 12 | WARN= /O2 |
13 | INCS= /I$(LUA_INC) | 13 | INCS= /I$(LUA_INC) |
14 | CFLAGS= $(WARN) $(INCS) | 14 | CFLAGS= $(WARN) $(INCS) |
15 | CC= cl | 15 | CC= cl |
16 | 16 | ||
17 | # $Id: config.win,v 1.1 2006/12/04 15:28:53 mascarenhas Exp $ | 17 | # $Id: config.win,v 1.2 2006/12/04 18:24:18 mascarenhas Exp $ |