aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
-rw-r--r--config7
2 files changed, 10 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f8ee01d..ffbcd81 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
1# $Id: Makefile,v 1.26 2005/06/27 17:06:01 tomas Exp $ 1# $Id: Makefile,v 1.27 2006/06/08 16:23:25 tomas Exp $
2 2
3T= lfs 3T= lfs
4V= 1.2 4V= 1.2
@@ -6,7 +6,10 @@ CONFIG= ./config
6 6
7include $(CONFIG) 7include $(CONFIG)
8 8
9ifeq "$(LUA_VERSION_NUM)" "500"
9COMPAT_O= $(COMPAT_DIR)/compat-5.1.o 10COMPAT_O= $(COMPAT_DIR)/compat-5.1.o
11endif
12
10SRCS= src/$T.c 13SRCS= src/$T.c
11OBJS= src/$T.o $(COMPAT_O) 14OBJS= src/$T.o $(COMPAT_O)
12 15
diff --git a/config b/config
index 5bbd47a..9958952 100644
--- a/config
+++ b/config
@@ -9,6 +9,11 @@ LIB_OPTION= -shared #for Linux
9#LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X 9#LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X
10 10
11LIBNAME= $T.so.$V 11LIBNAME= $T.so.$V
12# Lua version number
13# (according to Lua 5.1 definition:
14# first version digit * 100 + second version digit
15# e.g. Lua 5.0.2 => 500, Lua 5.1 => 501, Lua 5.1.1 => 501)
16LUA_VERSION_NUM= 500
12COMPAT_DIR= ../compat/src 17COMPAT_DIR= ../compat/src
13 18
14# Compilation directives 19# Compilation directives
@@ -17,4 +22,4 @@ INCS= -I$(LUA_INC) -I$(COMPAT_DIR)
17CFLAGS= $(WARN) $(INCS) 22CFLAGS= $(WARN) $(INCS)
18CC= gcc 23CC= gcc
19 24
20# $Id: config,v 1.14 2005/06/24 01:49:16 tomas Exp $ 25# $Id: config,v 1.15 2006/06/08 16:23:25 tomas Exp $