# HG changeset patch # User Matthew Wild # Date 1227670146 0 # Node ID 61c8877d703c665d714d0344bd041410a4300338 # Parent 004c278154dc3f1773fe8a9aadd388ff6ee117b3# Parent 63be85693710120a8fcb69a6be32fa5699d4e151 Merge from waqas diff -r 63be85693710 -r 61c8877d703c util-src/Makefile --- /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 +