diff options
author | David Walter Seikel | 2013-01-13 19:59:13 +1000 |
---|---|---|
committer | David Walter Seikel | 2013-01-13 19:59:13 +1000 |
commit | e49a9d4d24fb151d0f0499a22ffc1d51662f0181 (patch) | |
tree | b0718a4f3a81333f4a7f6d83cb34511558004ce6 /ClientHamr/extantz/make.sh | |
parent | Fixed some of the bit rot in LuaSL, it compiles now, but not working still. (diff) | |
download | SledjHamr-e49a9d4d24fb151d0f0499a22ffc1d51662f0181.zip SledjHamr-e49a9d4d24fb151d0f0499a22ffc1d51662f0181.tar.gz SledjHamr-e49a9d4d24fb151d0f0499a22ffc1d51662f0181.tar.bz2 SledjHamr-e49a9d4d24fb151d0f0499a22ffc1d51662f0181.tar.xz |
Add extantz into the build and test framework.
Diffstat (limited to 'ClientHamr/extantz/make.sh')
-rwxr-xr-x | ClientHamr/extantz/make.sh | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/ClientHamr/extantz/make.sh b/ClientHamr/extantz/make.sh deleted file mode 100755 index 45694e6..0000000 --- a/ClientHamr/extantz/make.sh +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | export PKG_CONFIG_PATH="/opt/e17/lib/pkgconfig" | ||
2 | |||
3 | echo "rm" | ||
4 | rm -f extantz crappisspuke.o extantz.edj | ||
5 | echo "edje" | ||
6 | edje_cc -id images extantz.edc extantz.edj | ||
7 | echo "Irrlicht" | ||
8 | #g++ -O3 -ffast-math crappisspuke.cpp -o crappisspuke -I../../libraries/irrlicht-1.8/include -I/usr/X11R6/include -L../../libraries/irrlicht-1.8/lib/Linux -lIrrlicht -lGL -lXxf86vm -lXext -lX11 -lXcursor && ./crappisspuke | ||
9 | g++ -O3 -ffast-math -c crappisspuke.cpp -o crappisspuke.o -I../../libraries/irrlicht-1.8/include -I/usr/X11R6/include $(pkg-config --cflags elementary) | ||
10 | echo "extantz" | ||
11 | gcc -g -DPACKAGE_DATA_DIR="\"$(pwd)\"" extantz.c crappisspuke.o -o extantz $(pkg-config --cflags --libs eo) $(pkg-config --cflags --libs ecore-x) $(pkg-config --cflags --libs elementary) $(pkg-config --cflags --libs ephysics) -L../../libraries/irrlicht-1.8/lib/Linux -lIrrlicht -lGL -lXxf86vm -lXext -lX11 -lXcursor && strip extantz && ./extantz | ||