Makefile: Added basic Makefile for standard make

Sun, 17 Jan 2010 01:07:14 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Sun, 17 Jan 2010 01:07:14 +0000
changeset 73
e9b909b391c3
parent 72
adb5fa9ea85a
child 74
8f1e69d846c1

Makefile: Added basic Makefile for standard make

Makefile file | annotate | diff | comparison | revisions
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Sun Jan 17 01:07:14 2010 +0000
@@ -0,0 +1,21 @@
+LUA_INC_DIR=/usr/include/lua5.1
+LUA_LIB_DIR=/usr/lib
+
+INSTALL_DIR_LUA=/usr/share/lua/5.1
+INSTALL_DIR_BIN=/usr/lib/lua/5.1
+
+
+all:
+	gcc -g -O0 -c -Wall -fpic -Iinclude -I$(LUA_INC_DIR) src/*.c
+	gcc -g -shared -fpic -o core.so *.o -L$(LUA_LIB_DIR) -llua5.1 -levent
+
+install:
+	install -d $(INSTALL_DIR_LUA)
+	install lua/luaevent.lua $(INSTALL_DIR_LUA)/
+	install -d $(INSTALL_DIR_BIN)/luaevent
+	install core.so $(INSTALL_DIR_BIN)/luaevent/core.so
+
+clean:
+	rm *.so
+	rm *.o
+

mercurial