Add rough Makefile for util-src/

Wed, 26 Nov 2008 02:21:18 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Wed, 26 Nov 2008 02:21:18 +0000
changeset 418
004c278154dc
parent 417
d60e63379284
child 422
61c8877d703c

Add rough Makefile for util-src/

util-src/Makefile file | annotate | diff | comparison | revisions
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/util-src/Makefile	Wed Nov 26 02:21:18 2008 +0000
@@ -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
+	

mercurial