Add simple build scripts.

git-svn-id: https://gambatte.svn.sourceforge.net/svnroot/gambatte@17 9dfb2916-2d38-0410-aef4-c5fe6c9ffc24
master
sinamas 2007-08-26 10:08:36 +00:00
parent 50eb390437
commit 0e80aee61d
3 changed files with 24 additions and 0 deletions

7
build_qt.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
echo "cd libgambatte && scons"
(cd libgambatte && scons) || exit
echo "cd gambatte_qt && qmake && make"
(cd gambatte_qt && qmake && make)

7
build_sdl.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
echo "cd libgambatte && scons"
(cd libgambatte && scons) || exit
echo "cd gambatte_sdl && scons"
(cd gambatte_sdl && scons)

10
clean.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/sh
echo "cd gambatte_qt && make distclean"
(cd gambatte_qt && make distclean)
echo "cd gambatte_sdl && scons -c"
(cd gambatte_sdl && scons -c)
echo "cd libgambatte && scons -c"
(cd libgambatte && scons -c)