diff options
author | tomas <tomas> | 2004-10-15 10:07:53 +0000 |
---|---|---|
committer | tomas <tomas> | 2004-10-15 10:07:53 +0000 |
commit | 8ffae1be28f82d4385665b78457681300d50aaf7 (patch) | |
tree | 873a9d7ace4777334020e91efd56ed19e6bb23ea /config | |
parent | 39fba7df43aa2bead39f6ffad6ef4675ad4576c3 (diff) | |
download | luafilesystem-8ffae1be28f82d4385665b78457681300d50aaf7.tar.gz luafilesystem-8ffae1be28f82d4385665b78457681300d50aaf7.tar.bz2 luafilesystem-8ffae1be28f82d4385665b78457681300d50aaf7.zip |
Pequena melhoria para achar os arquivos compat-5.1.
Diffstat (limited to '')
-rw-r--r-- | config | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -10,11 +10,13 @@ LIB_EXT= .dylib | |||
10 | LIB_OPTION= -dynamiclib #for MacOS X | 10 | LIB_OPTION= -dynamiclib #for MacOS X |
11 | #LIB_OPTION= -shared #for Linux | 11 | #LIB_OPTION= -shared #for Linux |
12 | 12 | ||
13 | COMPAT_DIR= ../compat | ||
14 | |||
13 | # Compilation directives | 15 | # Compilation directives |
14 | # On FreeBSD systems, the following line should be commented | 16 | # On FreeBSD systems, the following line should be commented |
15 | DLLIB= -ldl | 17 | DLLIB= -ldl |
16 | WARN= -O2 -Wall -fPIC -W -Waggregate-return -Wcast-align -Wmissing-prototypes -Wnested-externs -Wshadow -Wwrite-strings | 18 | WARN= -O2 -Wall -fPIC -W -Waggregate-return -Wcast-align -Wmissing-prototypes -Wnested-externs -Wshadow -Wwrite-strings |
17 | INCS= -I/usr/local/include/lua5 -I../compat | 19 | INCS= -I/usr/local/include/lua5 -I$(COMPAT_DIR) |
18 | LIBS= -L$(LIB_DIR) -llua -llualib -lm $(DLLIB) | 20 | LIBS= -L$(LIB_DIR) -llua -llualib -lm $(DLLIB) |
19 | CFLAGS= $(WARN) $(INCS) | 21 | CFLAGS= $(WARN) $(INCS) |
20 | CC= gcc | 22 | CC= gcc |