beta-0.89.2
[luatex.git] / source / texk / web2c / luatexdir / luafilesystem / config
blobcfd4c6a6d3e833fa9b5a6159f2632c466e27056d
1 # Installation directories
3 # Default installation prefix
4 PREFIX=/usr/local
6 # System's libraries directory (where binary libraries are installed)
7 LUA_LIBDIR= $(PREFIX)/lib/lua/5.1
9 # Lua includes directory
10 LUA_INC= $(PREFIX)/include
12 # OS dependent
13 LIB_OPTION= -shared #for Linux
14 #LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X
16 LIBNAME= $T.so.$V
18 # Compilation directives
19 WARN= -O2 -Wall -fPIC -W -Waggregate-return -Wcast-align -Wmissing-prototypes -Wnested-externs -Wshadow -Wwrite-strings -pedantic
20 INCS= -I$(LUA_INC)
21 CFLAGS= $(WARN) $(INCS)
22 CC= gcc
24 # $Id: config,v 1.21 2007/10/27 22:42:32 carregal Exp $