aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/build.sh
diff options
context:
space:
mode:
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