blob: d500f707831f279f250c13040a9f7f727db7afce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Installation directories
# System's libraries directory (where binary libraries are installed)
LUA_LIBDIR= /Programs/Lua/5.1.1/lib/lua/5.1
# Lua includes directory
LUA_INC= /Programs/Lua/5.1.1/include/lua51
# OS dependent
LIB_OPTION= -shared #for Linux
#LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X
LIBNAME= $T.so.$V
# Compilation directives
WARN= -O2 -Wall -fPIC -W -Waggregate-return -Wcast-align -Wmissing-prototypes -Wnested-externs -Wshadow -Wwrite-strings
INCS= -I$(LUA_INC)
CFLAGS= $(WARN) $(INCS)
CC= gcc
# $Id: config,v 1.17 2006/12/15 17:14:28 mascarenhas Exp $
|