diff options
author | carregal <carregal> | 2007-10-27 22:42:32 +0000 |
---|---|---|
committer | carregal <carregal> | 2007-10-27 22:42:32 +0000 |
commit | e52a7fef150d7b637f2b9efd426b4675c217377d (patch) | |
tree | b6a40690edf1b5f9aef2d6f2724475b282bf0c9f | |
parent | 6368cd544f32bcfc68b70230f9f3249721fbe37a (diff) | |
download | luafilesystem-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-- | config | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -1,8 +1,13 @@ | |||
1 | # Installation directories | 1 | # Installation directories |
2 | |||
3 | # Default installation prefix | ||
4 | PREFIX=/usr/local | ||
5 | |||
2 | # System's libraries directory (where binary libraries are installed) | 6 | # System's libraries directory (where binary libraries are installed) |
3 | LUA_LIBDIR= /usr/local/lib/lua/5.1 | 7 | LUA_LIBDIR= $(PREFIX)/lib/lua/5.1 |
8 | |||
4 | # Lua includes directory | 9 | # Lua includes directory |
5 | LUA_INC= /usr/local/include | 10 | LUA_INC= $(PREFIX)/include |
6 | 11 | ||
7 | # OS dependent | 12 | # OS dependent |
8 | LIB_OPTION= -shared #for Linux | 13 | LIB_OPTION= -shared #for Linux |
@@ -16,4 +21,4 @@ INCS= -I$(LUA_INC) | |||
16 | CFLAGS= $(WARN) $(INCS) | 21 | CFLAGS= $(WARN) $(INCS) |
17 | CC= gcc | 22 | CC= 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 $ |