mirror of
https://github.com/holub/mame
synced 2025-04-22 00:11:58 +03:00
20 lines
393 B
Plaintext
20 lines
393 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= /MD $(WARN) $(INCS)
|
|
CC= cl
|
|
|
|
# $Id: config.win,v 1.7 2008/03/25 17:39:29 mascarenhas Exp $
|