aboutsummaryrefslogtreecommitdiff
path: root/config.win
blob: 587241fdd018f8b705e3d335373257c55f6b13b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Installation directories
# System's libraries directory (where binary libraries are installed)
LUA_LIBDIR= c:\lua51\lib
# Lua includes directory
LUA_INC= c:\lua51\include
# Lua library
LUA_LIB= c:\lua51\bin\lua5.1.lib

LIBNAME= $T.dll

# Compilation directives
WARN= /O2
INCS= /I$(LUA_INC)
CFLAGS= $(WARN) $(INCS)
CC= cl

# $Id: config.win,v 1.2 2006/12/04 18:24:18 mascarenhas Exp $