From 7a93f7ee03c7cbbda3ea33b0ad9fce6c319b91c8 Mon Sep 17 00:00:00 2001 From: tomas Date: Tue, 18 Jan 2005 09:36:11 +0000 Subject: Uniformizacao de nomes de variaveis entre as bibliotecas do Kepler. Melhorias para reutilizacao do Makefile. --- config | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'config') diff --git a/config b/config index 16ed356..0fe23ad 100644 --- a/config +++ b/config @@ -1,8 +1,10 @@ # Installation directories # System's libraries directory (where binary libraries are installed) -LIB_DIR= /usr/local/lib +LUA_LIBDIR= /usr/local/lib/lua/5.0 # System's lua directory (where Lua libraries are installed) -LUA_DIR= /usr/local/lua +LUA_DIR= /usr/local/share/lua/5.0 +# Lua includes directory +LUA_INC= /usr/local/include/lua5 # OS dependent LIB_EXT= .dylib @@ -16,8 +18,8 @@ COMPAT_DIR= . # On FreeBSD systems, the following line should be commented DLLIB= -ldl WARN= -O2 -Wall -fPIC -W -Waggregate-return -Wcast-align -Wmissing-prototypes -Wnested-externs -Wshadow -Wwrite-strings -INCS= -I/usr/local/include/lua5 -I$(COMPAT_DIR) -LIBS= -L$(LIB_DIR) -llua -llualib -lm $(DLLIB) +INCS= -I$(LUA_INC) -I$(COMPAT_DIR) +LIBS= -L$(LUA_LIBDIR) -llua -llualib -lm $(DLLIB) CFLAGS= $(WARN) $(INCS) CC= gcc -- cgit v1.2.3-55-g6feb