diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-12-04 15:48:19 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-12-04 15:48:19 +0000 |
commit | 3ba7342f583a1b9a5c1d5d05c5febd2358e81435 (patch) | |
tree | 61da7b9bff8f644f7a6544939b9bebc23cc48308 /util-src | |
parent | 2d2414f199a416409e84a3ef9c38a84ea0ba825b (diff) | |
parent | 5be02b66a8df3465a3c2c9dfe485c460b78389ab (diff) | |
download | prosody-3ba7342f583a1b9a5c1d5d05c5febd2358e81435.tar.gz prosody-3ba7342f583a1b9a5c1d5d05c5febd2358e81435.zip |
Automated merge with http://waqas.ath.cx/
Diffstat (limited to 'util-src')
-rw-r--r-- | util-src/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/util-src/Makefile b/util-src/Makefile index fdb689dd..4aedec40 100644 --- a/util-src/Makefile +++ b/util-src/Makefile @@ -12,16 +12,21 @@ OPENSSL_LIB?=crypto all: encodings.so hashes.so install: encodings.so hashes.so - install -s *.so ../util/ + install *.so ../util/ clean: rm -f *.so rm -f ../util/*.so -encodings.so: encodings.c - gcc $(CFLAGS) encodings.c -I$(LUA_INCDIR) -l$(LUA_LIB) -l$(IDN_LIB) -o encodings.so +encodings.o: encodings.c + gcc $(CFLAGS) -I$(LUA_INCDIR) -c -o encodings.o encodings.c +encodings.so: encodings.o + export MACOSX_DEPLOYMENT_TARGET="10.3"; gcc $(LFLAGS) -o encodings.so encodings.o -L/usr/local/lib -llua$(LUA_SUFFIX) -lcrypto -lidn + -hashes.so: hashes.c - gcc $(CFLAGS) hashes.c -I$(LUA_INCDIR) -l$(LUA_LIB) -l$(OPENSSL_LIB) -o hashes.so +hashes.o: hashes.c + gcc $(CFLAGS) -I$(LUA_INCDIR) -c -o hashes.o hashes.c +hashes.so: hashes.o + export MACOSX_DEPLOYMENT_TARGET="10.3"; gcc $(LFLAGS) -o hashes.so hashes.o -L/usr/local/lib -llua$(LUA_SUFFIX) -lcrypto -lssl |