File

util-src/Makefile @ 427:3288dd8d9669

Yes, we don't put these things in here, we put them in here.
author Matthew Wild <mwild1@gmail.com>
date Wed, 26 Nov 2008 15:58:04 +0000
parent 418:004c278154dc
child 442:722f63c70a77
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