aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/build.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xbuild.sh40
1 files changed, 0 insertions, 40 deletions
diff --git a/build.sh b/build.sh
deleted file mode 100755
index 28c03f7..0000000
--- a/build.sh
+++ /dev/null
@@ -1,40 +0,0 @@
1#! /bin/bash
2
3wd=$(pwd)
4
5echo "_______________ BUILDING lemon _______________"
6cd $wd/libraries/lemon
7rm -f *.o lemon
8
9CFLAGS="-g -Wall -I include $CFLAGOPTS"
10LDFLAGS="-L lib -L /usr/lib -L /lib"
11LFLAGS="-d"
12
13names="lemon"
14objects=""
15for i in $names
16do
17 command="gcc $CFLAGS -c -o $i.o $i.c"
18 echo $command
19 $command
20 objects="$objects $i.o"
21done
22command="gcc $CFLAGS -o lemon $objects $LDFLAGS $libs"
23echo $command
24$command
25
26echo "_______________ BUILDING Irrlicht _______________"
27cd $wd/libraries/irrlicht-1.8.1/source/Irrlicht
28make
29
30echo "_______________ BUILDING LuaSL _______________"
31cd $wd/LuaSL
32./build.sh
33
34echo "_______________ BUILDING GuiLua _______________"
35cd $wd/ClientHamr/GuiLua
36./build.sh
37
38echo "_______________ BUILDING extantz _______________"
39cd $wd/ClientHamr/extantz
40./build.sh