mirror of
https://github.com/libretro/gambatte-libretro.git
synced 2024-11-23 16:00:06 +00:00
05e5423dc7
git-svn-id: https://gambatte.svn.sourceforge.net/svnroot/gambatte@50 9dfb2916-2d38-0410-aef4-c5fe6c9ffc24
17 lines
338 B
Bash
Executable File
17 lines
338 B
Bash
Executable File
#!/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)
|
|
|
|
echo "rm -f *gambatte*/config.log"
|
|
rm -f *gambatte*/config.log
|
|
|
|
echo "rm -rf *gambatte*/.scon*"
|
|
rm -rf *gambatte*/.scon*
|