diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-11-26 02:21:18 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-11-26 02:21:18 +0000 |
commit | 78cffc8a02012c14644a08fb07dd05c760dcba06 (patch) | |
tree | 91afec4689a8130f9e0b2af2449dac06442dc46c /util-src | |
parent | 15d8fc0d62296146e8901d345fa74cecf03e2d77 (diff) | |
download | prosody-78cffc8a02012c14644a08fb07dd05c760dcba06.tar.gz prosody-78cffc8a02012c14644a08fb07dd05c760dcba06.zip |
Add rough Makefile for util-src/
Diffstat (limited to 'util-src')
-rw-r--r-- | util-src/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/util-src/Makefile b/util-src/Makefile new file mode 100644 index 00000000..28dc88fa --- /dev/null +++ b/util-src/Makefile @@ -0,0 +1,24 @@ + +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 + |