util-src/Makefile

Sun, 30 Nov 2008 17:18:31 +0100

author
Tobias Markmann <tm@ayena.de>
date
Sun, 30 Nov 2008 17:18:31 +0100
changeset 507
4d3ccc6b5817
parent 491
25042b0d2626
child 511
f9ab28562fda
permissions
-rw-r--r--

Automerge with waqas.


include ../config.unix

LUA_SUFFIX?=5.1
LUA_INCDIR?=/usr/include/lua$(LUA_SUFFIX)
LUA_LIB?=lua$(LUA_SUFFIX)
IDN_LIB?=idn
OPENSSL_LIB?=ssl



all: encodings.so hashes.so

install: encodings.so hashes.so
	strip *.so
	cp *.so ../util/
	

clean:
	rm -f *.so
	rm -f ../util/*.so

encodings.so: encodings.c
	gcc -shared -fPIC encodings.c -I$(LUA_INCDIR) -l$(LUA_LIB) -l$(IDN_LIB) -o encodings.so

hashes.so: hashes.c
	gcc -shared -fPIC hashes.c -I$(LUA_INCDIR) -l$(LUA_LIB) -l$(OPENSSL_LIB) -o hashes.so
	

mercurial