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