mirror of
https://github.com/lunarmodules/luafilesystem.git
synced 2026-07-22 11:03:07 +00:00
18 lines
378 B
Plaintext
18 lines
378 B
Plaintext
# Installation directories
|
|
# System's libraries directory (where binary libraries are installed)
|
|
LUA_LIBDIR= c:\lua5.1
|
|
# Lua includes directory
|
|
LUA_INC= c:\lua5.1\include
|
|
# Lua library
|
|
LUA_LIB= c:\lua5.1\lua5.1.lib
|
|
|
|
LIBNAME= $T.dll
|
|
|
|
# Compilation directives
|
|
WARN= /O2
|
|
INCS= /I$(LUA_INC)
|
|
CFLAGS= $(WARN) $(INCS)
|
|
CC= cl
|
|
|
|
# $Id: config.win,v 1.4 2007/05/18 19:52:59 carregal Exp $
|