mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Add rough Makefile for util-src/
This commit is contained in:
parent
15d8fc0d62
commit
78cffc8a02
1 changed files with 24 additions and 0 deletions
24
util-src/Makefile
Normal file
24
util-src/Makefile
Normal file
|
@ -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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue