File

util-src/Makefile @ 494:457d0c750826

Yet another fix for the makefile :)
author Matthew Wild <mwild1@gmail.com>
date Sun, 30 Nov 2008 00:33:58 +0000
parent 491:25042b0d2626
child 511:f9ab28562fda
line wrap: on
line source


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