mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
7 lines
150 B
Bash
Executable file
7 lines
150 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "cd libgambatte && scons"
|
|
(cd libgambatte && scons) || exit
|
|
|
|
echo "cd gambatte_qt && qmake && make"
|
|
(cd gambatte_qt && qmake && make)
|