aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcarregal <carregal>2007-10-27 22:42:32 +0000
committercarregal <carregal>2007-10-27 22:42:32 +0000
commite52a7fef150d7b637f2b9efd426b4675c217377d (patch)
treeb6a40690edf1b5f9aef2d6f2724475b282bf0c9f
parent6368cd544f32bcfc68b70230f9f3249721fbe37a (diff)
downloadluafilesystem-1_3_0.tar.gz
luafilesystem-1_3_0.tar.bz2
luafilesystem-1_3_0.zip
Using a default prefix for the Makefilev1_3_0
-rw-r--r--config11
1 files changed, 8 insertions, 3 deletions
diff --git a/config b/config
index 5868f73..cfd4c6a 100644
--- a/config
+++ b/config
@@ -1,8 +1,13 @@
1# Installation directories 1# Installation directories
2
3# Default installation prefix
4PREFIX=/usr/local
5
2# System's libraries directory (where binary libraries are installed) 6# System's libraries directory (where binary libraries are installed)
3LUA_LIBDIR= /usr/local/lib/lua/5.1 7LUA_LIBDIR= $(PREFIX)/lib/lua/5.1
8
4# Lua includes directory 9# Lua includes directory
5LUA_INC= /usr/local/include 10LUA_INC= $(PREFIX)/include
6 11
7# OS dependent 12# OS dependent
8LIB_OPTION= -shared #for Linux 13LIB_OPTION= -shared #for Linux
@@ -16,4 +21,4 @@ INCS= -I$(LUA_INC)
16CFLAGS= $(WARN) $(INCS) 21CFLAGS= $(WARN) $(INCS)
17CC= gcc 22CC= gcc
18 23
19# $Id: config,v 1.20 2007/07/31 03:22:55 hisham Exp $ 24# $Id: config,v 1.21 2007/10/27 22:42:32 carregal Exp $