File

util-src/Makefile @ 473:22b0e654c4cf

To use free you should include stdlib.h rather than malloc.h according to man page of free() and various C reference websites.
author Tobias Markmann <tm@ayena.de>
date Fri, 28 Nov 2008 18:36:04 +0100
parent 472:ee45599c0b5d
child 475:fe861de7a4fc
line wrap: on
line source



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