File

util-src/Makefile @ 449:c0a4a1e63d70

Completely switched to new hashes library from the old md5 library
author Waqas Hussain <waqas20@gmail.com>
date Fri, 28 Nov 2008 01:16:26 +0500
parent 445:f68f39a62ecc
child 463:a2452d3bd828
child 472:ee45599c0b5d
line wrap: on
line source



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