mirror of
https://github.com/aaru-dps/aaruremote.git
synced 2025-12-16 19:24:37 +00:00
13 lines
397 B
Bash
13 lines
397 B
Bash
#!/usr/bin/env bash
|
|
cmake .
|
|
make
|
|
if [ -f $DEVKITPRO/wii.cmake ]; then
|
|
rm -R ./*/CMakeFiles CMakeCache.txt CMakeFiles ./*/Makefile Makefile ./*/cmake_install.cmake cmake_install.cmake
|
|
. $DEVKITPRO/ppcvars.sh
|
|
cmake . -DCMAKE_TOOLCHAIN_FILE=$DEVKITPRO/wii.cmake
|
|
make
|
|
fi
|
|
|
|
# Clean
|
|
rm -R ./*/CMakeFiles CMakeCache.txt CMakeFiles ./*/Makefile Makefile ./*/cmake_install.cmake cmake_install.cmake
|