util-src/Makefile
author Tobias Markmann <tm@ayena.de>
Fri, 28 Nov 2008 18:32:54 +0100
changeset 472 ee45599c0b5d
parent 445 f68f39a62ecc
child 475 fe861de7a4fc
permissions -rw-r--r--
Do idna_to_ascii when building own response.



LUA_INCLUDE=/usr/include/lua51
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