Software /
code /
prosody
File
util-src/Makefile @ 438:193f9dd64f17
Bumper commit for the new modulemanager API \o/ Updates all the modules, though some more changes may be in store.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 27 Nov 2008 03:12:12 +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