luasocket/config

66 lines
1.2 KiB
Plaintext
Raw Normal View History

#------
# LuaSocket makefile configuration
#
#------
# Output file names
#
EXT=so
SOCKET_V=2.0.2
MIME_V=1.0.2
SOCKET_SO=socket.$(EXT).$(SOCKET_V)
MIME_SO=mime.$(EXT).$(MIME_V)
UNIX_SO=unix.$(EXT)
#------
# Lua includes and libraries
#
2007-03-12 05:08:40 +01:00
#LUAINC=-I/usr/local/include/lua50
2006-04-20 06:16:23 +02:00
#LUAINC=-I/usr/local/include/lua5.1
LUAINC=-I/usr/include/lua5.1
2007-06-12 02:06:29 +02:00
#LUAINC=-Ilua-5.1.1/src
#------
# Compat-5.1 directory
#
#COMPAT=-Icompat-5.1r5
#------
# Top of your Lua installation
# Relative paths will be inside the src tree
DESTDIR=
prefix=/usr/local
top=$(DESTDIR)$(prefix)
2007-03-12 05:08:40 +01:00
#INSTALL_TOP_SHARE=/usr/local/share/lua/5.0
#INSTALL_TOP_LIB=/usr/local/lib/lua/5.0
INSTALL_TOP_SHARE=$(top)/share/lua/5.1
INSTALL_TOP_LIB=$(top)/lib/lua/5.1
INSTALL_DATA=cp
INSTALL_EXEC=cp
#------
# Compiler and linker settings
2005-09-30 00:26:35 +02:00
# for Mac OS X
#
2007-06-12 02:06:29 +02:00
#CC=gcc
#DEF= -DLUASOCKET_DEBUG -DUNIX_HAS_SUN_LEN
#CFLAGS= $(LUAINC) $(COMPAT) $(DEF) -pedantic -Wall -O2 -fno-common
2007-06-12 02:06:29 +02:00
#LDFLAGS=-bundle -undefined dynamic_lookup
#LD=export MACOSX_DEPLOYMENT_TARGET="10.3"; gcc
2005-10-05 05:20:22 +02:00
#------
# Compiler and linker settings
# for Linux
2007-06-12 02:06:29 +02:00
CC=gcc
DEF=-DLUASOCKET_DEBUG
CFLAGS= $(LUAINC) $(COMPAT) $(DEF) -pedantic -Wall -O2 -fpic
2007-06-12 02:06:29 +02:00
LDFLAGS=-O -shared -fpic
LD=gcc
2005-09-30 00:26:35 +02:00
#------
# End of makefile configuration
#