aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/build.sh
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-02-11 20:44:17 +1000
committerDavid Walter Seikel2012-02-11 20:44:17 +1000
commit8b8e8031fa7755ba2771f9c6cd04c76de96fdb25 (patch)
treed87ceee360e76d2b947268494a5a1c7bc30b147c /LuaSL/build.sh
parentMore message sending design work. (diff)
downloadSledjHamr-8b8e8031fa7755ba2771f9c6cd04c76de96fdb25.zip
SledjHamr-8b8e8031fa7755ba2771f9c6cd04c76de96fdb25.tar.gz
SledjHamr-8b8e8031fa7755ba2771f9c6cd04c76de96fdb25.tar.bz2
SledjHamr-8b8e8031fa7755ba2771f9c6cd04c76de96fdb25.tar.xz
LuaSL_test harness - connects to the LuaSL server, sends script commands. It has the test GUI now. Turned LuaSL into purely a server.
Diffstat (limited to 'LuaSL/build.sh')
-rwxr-xr-xLuaSL/build.sh13
1 files changed, 13 insertions, 0 deletions
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"
76echo $command 76echo $command
77$command 77$command
78 78
79names="LuaSL_test LuaSL_utilities"
80objects=""
81for i in $names
82do
83 command="gcc $CFLAGS -c -o $i.o $i.c"
84 echo $command
85 $command
86 objects="$objects $i.o"
87done
88command="gcc $CFLAGS -o ../LuaSL_test $objects $LDFLAGS $libs"
89echo $command
90$command
91