2020-07-03 22:21:48 +00:00
|
|
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
|
|
|
|
cd emulibc && make -f Makefile $1 -j && cd -
|
|
|
|
cd libco && make -f Makefile $1 -j && cd -
|
|
|
|
cd gpgx && make -f Makefile $1 -j && cd -
|
|
|
|
cd libsnes && make -f Makefile $1 -j && cd -
|
2021-10-24 18:40:23 +00:00
|
|
|
cd melon && make -f Makefile $1 -j && cd -
|
2020-07-03 22:21:48 +00:00
|
|
|
cd picodrive && make -f Makefile $1 -j && cd -
|
|
|
|
cd snes9x && make -f Makefile $1 -j && cd -
|
2022-06-16 21:37:18 +00:00
|
|
|
cd tic80 && make -f Makefile $1 -j && cd -
|
2020-07-03 22:21:48 +00:00
|
|
|
cd uzem && make -f Makefile $1 -j && cd -
|
2020-09-07 15:07:48 +00:00
|
|
|
cd nyma && ./make-all-released-cores.sh $1 && cd -
|