diff options
author | tomas <tomas> | 2005-06-06 22:15:53 +0000 |
---|---|---|
committer | tomas <tomas> | 2005-06-06 22:15:53 +0000 |
commit | 9015b5352b99590f8f76f780849709622d26847a (patch) | |
tree | f2dde0d7aac4ad1680196fbd3ffc10b4543d7eb6 | |
parent | 9f9257647e4448b4eb47fe59d72be34b8de2b28e (diff) | |
download | luafilesystem-9015b5352b99590f8f76f780849709622d26847a.tar.gz luafilesystem-9015b5352b99590f8f76f780849709622d26847a.tar.bz2 luafilesystem-9015b5352b99590f8f76f780849709622d26847a.zip |
Correcting linking on MacOS X.
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||
3 | T= lfs | 3 | T= lfs |
4 | V= 1.1 | 4 | V= 1.1 |
@@ -14,7 +14,7 @@ OBJS= src/$T.o $(COMPAT_O) | |||
14 | lib: src/$(LIBNAME) | 14 | lib: src/$(LIBNAME) |
15 | 15 | ||
16 | src/$(LIBNAME): $(OBJS) | 16 | src/$(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 |