aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/luaproc/Makefile
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-02-22 23:46:56 +1000
committerDavid Walter Seikel2012-02-22 23:46:56 +1000
commitf93cf73e01e9cf4b0a6be43d61ebc24b9fa64b0d (patch)
treea291eb5bf596aad17791b37a2a2826d9271742f3 /libraries/luaproc/Makefile
parentImplement llGetScriptName(). (diff)
downloadSledjHamr-f93cf73e01e9cf4b0a6be43d61ebc24b9fa64b0d.zip
SledjHamr-f93cf73e01e9cf4b0a6be43d61ebc24b9fa64b0d.tar.gz
SledjHamr-f93cf73e01e9cf4b0a6be43d61ebc24b9fa64b0d.tar.bz2
SledjHamr-f93cf73e01e9cf4b0a6be43d61ebc24b9fa64b0d.tar.xz
Implement callAndReturn(), use it from callAndWait(). That's most of LuaSL's side of "use OpenSim to deal with in world stuff".
Diffstat (limited to 'libraries/luaproc/Makefile')
-rw-r--r--libraries/luaproc/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/libraries/luaproc/Makefile b/libraries/luaproc/Makefile
index 1efc2d5..3ab61bf 100644
--- a/libraries/luaproc/Makefile
+++ b/libraries/luaproc/Makefile
@@ -33,7 +33,8 @@ LUA_LIB_PATH=/usr/lib/lua5.1
33 33
34# standard makefile variables 34# standard makefile variables
35CC=gcc 35CC=gcc
36CFLAGS=-c -Wall -fPIC -I${LUA_INC_PATH} 36# TODO - hack, hard coded EFL include paths for now.
37CFLAGS=-c -Wall -fPIC -I${LUA_INC_PATH} -I/opt/e17/include/eina-1 -I/opt/e17/include/eina-1/eina -I/opt/e17/include/ecore-1
37LDFLAGS=-shared -L${LUA_LIB_PATH} -lpthread 38LDFLAGS=-shared -L${LUA_LIB_PATH} -lpthread
38SOURCES=sched.c list.c luaproc.c channel.c 39SOURCES=sched.c list.c luaproc.c channel.c
39OBJECTS=${SOURCES:.c=.o} 40OBJECTS=${SOURCES:.c=.o}