Mercurial > prosody-hg
view util-src/Makefile @ 425:f3b65866192e
Added mod_ping with support for [XEP-0199: XMPP Ping]
| author | Waqas Hussain <waqas20@gmail.com> |
|---|---|
| date | Wed, 26 Nov 2008 09:06:32 +0500 |
| parents | 004c278154dc |
| children | 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
