mirror of
https://github.com/wiiu-env/haxchi.git
synced 2024-11-16 13:19:16 +01:00
14 lines
157 B
Bash
14 lines
157 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd installer
|
||
|
mkdir data
|
||
|
cd ../dsrom
|
||
|
echo Building DS ROMs
|
||
|
make clean
|
||
|
make CB=1
|
||
|
|
||
|
cd ../installer
|
||
|
echo Building WiiU Installer
|
||
|
make clean
|
||
|
make CB=1
|