mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
19 lines
393 B
Text
19 lines
393 B
Text
# 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= /MD $(WARN) $(INCS)
|
|
CC= cl
|
|
|
|
# $Id: config.win,v 1.7 2008/03/25 17:39:29 mascarenhas Exp $
|