mirror of
https://github.com/martravi/wiiqt6.git
synced 2024-11-25 14:17:00 +01:00
13 lines
163 B
Bash
13 lines
163 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
mkdir -p bin
|
||
|
|
||
|
for app in nandBinCheck nandDump nandExtract ohneschwanzenegger
|
||
|
do
|
||
|
cd $app
|
||
|
qmake
|
||
|
make -j4
|
||
|
cp $app ../bin
|
||
|
cd ..
|
||
|
done
|