From 8b8e8031fa7755ba2771f9c6cd04c76de96fdb25 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Sat, 11 Feb 2012 20:44:17 +1000 Subject: LuaSL_test harness - connects to the LuaSL server, sends script commands. It has the test GUI now. Turned LuaSL into purely a server. --- LuaSL/build.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'LuaSL/build.sh') diff --git a/LuaSL/build.sh b/LuaSL/build.sh index edddb31..7242205 100755 --- a/LuaSL/build.sh +++ b/LuaSL/build.sh @@ -76,3 +76,16 @@ command="gcc $CFLAGS -o ../LuaSL $objects $LDFLAGS $libs" echo $command $command +names="LuaSL_test LuaSL_utilities" +objects="" +for i in $names +do + command="gcc $CFLAGS -c -o $i.o $i.c" + echo $command + $command + objects="$objects $i.o" +done +command="gcc $CFLAGS -o ../LuaSL_test $objects $LDFLAGS $libs" +echo $command +$command + -- cgit v1.1