diff options
Diffstat (limited to '')
-rwxr-xr-x | ClientHamr/extantz/build.sh (renamed from ClientHamr/extantz/make.sh) | 4 | ||||
-rwxr-xr-x | ClientHamr/extantz/test.sh | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/ClientHamr/extantz/make.sh b/ClientHamr/extantz/build.sh index 45694e6..9649947 100755 --- a/ClientHamr/extantz/make.sh +++ b/ClientHamr/extantz/build.sh | |||
@@ -1,6 +1,6 @@ | |||
1 | export PKG_CONFIG_PATH="/opt/e17/lib/pkgconfig" | 1 | export PKG_CONFIG_PATH="/opt/e17/lib/pkgconfig" |
2 | 2 | ||
3 | echo "rm" | 3 | echo "clean" |
4 | rm -f extantz crappisspuke.o extantz.edj | 4 | rm -f extantz crappisspuke.o extantz.edj |
5 | echo "edje" | 5 | echo "edje" |
6 | edje_cc -id images extantz.edc extantz.edj | 6 | edje_cc -id images extantz.edc extantz.edj |
@@ -8,4 +8,4 @@ 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 | 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) | 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" | 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 | 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 |
diff --git a/ClientHamr/extantz/test.sh b/ClientHamr/extantz/test.sh new file mode 100755 index 0000000..01c2abe --- /dev/null +++ b/ClientHamr/extantz/test.sh | |||
@@ -0,0 +1 @@ | |||
./build.sh && ./extantz | |||