Software /
code /
prosody
Changeset
422:61c8877d703c
Merge from waqas
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 26 Nov 2008 03:29:06 +0000 |
parents | 418:004c278154dc (diff) 421:63be85693710 (current diff) |
children | 423:c9c7f026a108 |
files | |
diffstat | 1 files changed, 24 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/util-src/Makefile Wed Nov 26 03:29:06 2008 +0000 @@ -0,0 +1,24 @@ + +LUA_INCLUDE=/usr/include/lua5.1 +LUA_LIB=lua5.1 + +IDN_LIB=idn +OPENSSL_LIB=ssl + + +all: encodings.so hashes.so + +install: encodings.so hashes.so + strip *.so + cp *.so ../util/ + + +clean: + rm *.so + +encodings.so: encodings.c + gcc -shared encodings.c -I$(LUA_INCLUDE) -l$(LUA_LIB) -l$(IDN_LIB) -o encodings.so + +hashes.so: hashes.c + gcc -shared hashes.c -I$(LUA_INCLUDE) -l$(LUA_LIB) -l$(OPENSSL_LIB) -o hashes.so +