diff options
Diffstat (limited to 'config')
-rw-r--r-- | config | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 | ||
11 | LIBNAME= $T.so.$V | 11 | LIBNAME= $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) | ||
16 | LUA_VERSION_NUM= 500 | ||
12 | COMPAT_DIR= ../compat/src | 17 | COMPAT_DIR= ../compat/src |
13 | 18 | ||
14 | # Compilation directives | 19 | # Compilation directives |
@@ -17,4 +22,4 @@ INCS= -I$(LUA_INC) -I$(COMPAT_DIR) | |||
17 | CFLAGS= $(WARN) $(INCS) | 22 | CFLAGS= $(WARN) $(INCS) |
18 | CC= gcc | 23 | CC= 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 $ |