aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortomas <tomas>2005-06-05 00:36:18 +0000
committertomas <tomas>2005-06-05 00:36:18 +0000
commit95bd727a3d6e1c14c40306853d2e6b6662d4a3f2 (patch)
tree70af12d33eddb825d6738150d03d5882a3e85670
parent9265a9782269a5deef0ee44b8905b28e01587b3b (diff)
downloadluafilesystem-95bd727a3d6e1c14c40306853d2e6b6662d4a3f2.tar.gz
luafilesystem-95bd727a3d6e1c14c40306853d2e6b6662d4a3f2.tar.bz2
luafilesystem-95bd727a3d6e1c14c40306853d2e6b6662d4a3f2.zip
Standardizing Makefile and config.
-rw-r--r--Makefile6
-rw-r--r--config4
2 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index e344605..033d9d6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,10 @@
1# $Id: Makefile,v 1.20 2005/06/04 18:22:29 tomas Exp $ 1# $Id: Makefile,v 1.21 2005/06/05 00:36:18 tomas Exp $
2 2
3T= lfs 3T= lfs
4V= 1.1
4 5
5include ./config 6include ./config
6 7
7V= 1.1
8LIBNAME= lib$T.$V.so
9
10COMPAT_O= $(COMPAT_DIR)/compat-5.1.o 8COMPAT_O= $(COMPAT_DIR)/compat-5.1.o
11SRCS= src/$T.c 9SRCS= src/$T.c
12OBJS= src/$T.o $(COMPAT_O) 10OBJS= src/$T.o $(COMPAT_O)
diff --git a/config b/config
index 87e22aa..4bb4de2 100644
--- a/config
+++ b/config
@@ -5,9 +5,10 @@ LUA_LIBDIR= /usr/local/lib/lua/5.0
5LUA_INC= /usr/local/include/lua5 5LUA_INC= /usr/local/include/lua5
6 6
7# OS dependent 7# OS dependent
8#LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X
9LIB_OPTION= -shared #for Linux 8LIB_OPTION= -shared #for Linux
9#LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X
10 10
11LIBNAME= lib$T-$V.so
11COMPAT_DIR= ../compat/src 12COMPAT_DIR= ../compat/src
12 13
13# Compilation directives 14# Compilation directives
@@ -20,3 +21,4 @@ LIBS= $(LUA_LIBS) $(DLLIB)
20CFLAGS= $(WARN) $(INCS) 21CFLAGS= $(WARN) $(INCS)
21CC= gcc 22CC= gcc
22 23
24# $Id: config,v 1.11 2005/06/05 00:36:18 tomas Exp $