aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortomas <tomas>2005-06-06 22:15:53 +0000
committertomas <tomas>2005-06-06 22:15:53 +0000
commit9015b5352b99590f8f76f780849709622d26847a (patch)
treef2dde0d7aac4ad1680196fbd3ffc10b4543d7eb6
parent9f9257647e4448b4eb47fe59d72be34b8de2b28e (diff)
downloadluafilesystem-9015b5352b99590f8f76f780849709622d26847a.tar.gz
luafilesystem-9015b5352b99590f8f76f780849709622d26847a.tar.bz2
luafilesystem-9015b5352b99590f8f76f780849709622d26847a.zip
Correcting linking on MacOS X.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6836d04..b474952 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
1# $Id: Makefile,v 1.22 2005/06/06 20:10:10 tomas Exp $ 1# $Id: Makefile,v 1.23 2005/06/06 22:15:53 tomas Exp $
2 2
3T= lfs 3T= lfs
4V= 1.1 4V= 1.1
@@ -14,7 +14,7 @@ OBJS= src/$T.o $(COMPAT_O)
14lib: src/$(LIBNAME) 14lib: src/$(LIBNAME)
15 15
16src/$(LIBNAME): $(OBJS) 16src/$(LIBNAME): $(OBJS)
17 $(CC) $(CFLAGS) $(LIBS) $(LIB_OPTION) -o src/$(LIBNAME) $(OBJS) 17 export MACOSX_DEPLOYMENT_TARGET="10.3"; $(CC) $(CFLAGS) $(LIBS) $(LIB_OPTION) -o src/$(LIBNAME) $(OBJS)
18 18
19$(COMPAT_O): $(COMPAT_DIR)/compat-5.1.c 19$(COMPAT_O): $(COMPAT_DIR)/compat-5.1.c
20 $(CC) -c $(CFLAGS) -o $@ $(COMPAT_DIR)/compat-5.1.c 20 $(CC) -c $(CFLAGS) -o $@ $(COMPAT_DIR)/compat-5.1.c