luasocket/config

56 lines
932 B
Plaintext
Raw Normal View History

#------
# LuaSocket makefile configuration
#
#------
# Output file names
#
EXT=so
SOCKET_V=2.0.0
MIME_V=1.0.0
SOCKET_SO=socket.$(EXT).$(SOCKET_V)
MIME_SO=mime.$(EXT).$(MIME_V)
UNIX_SO=unix.$(EXT)
#------
# Lua includes and libraries
#
LUAINC=
LUALIB=
#------
# Compat-5.1 directory
#
2005-08-12 07:56:32 +02:00
COMPAT=compat-5.1r4
#------
# Top of your Lua installation
# Relative paths will be inside the src tree
#
INSTALL_TOP_LUA=share
INSTALL_TOP_LIB=lib
INSTALL_DATA=cp
INSTALL_EXEC=cp
#------
# Compiler and linker settings
2005-09-30 00:26:35 +02:00
# for Mac OS X
#
CC=gcc
DEF=-DLUASOCKET_DEBUG -DUNIX_HAS_SUN_LEN
2005-09-30 00:26:35 +02:00
CFLAGS= $(LUAINC) -I$(COMPAT) $(DEF) -pedantic -Wall -O2 -fno-common
LDFLAGS=-bundle -undefined dynamic_lookup
LD=export MACOSX_DEPLOYMENT_TARGET="10.3"; gcc
2005-09-30 00:26:35 +02:00
# for Linux
#CC=gcc
#DEF=-DLUASOCKET_DEBUG -DUNIX_HAS_SUN_LEN
#CFLAGS= $(LUAINC) -I$(COMPAT) $(DEF) -pedantic -Wall -O2 -fpic
#LDFLAGS=-O -shared
#LD=gcc
#------
# End of makefile configuration
#