mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-14 03:42:20 +00:00
ee94dd4dac
To compile on GameCube use this: make PLATFORM=cube clean all install If PLATFORM is not specified or set to anything else it will compile for Wii.
20 lines
434 B
YAML
20 lines
434 B
YAML
language: c
|
|
|
|
os:
|
|
- linux
|
|
|
|
env:
|
|
global:
|
|
- DEVKITPRO=$HOME/devkitPro
|
|
- DEVKITPPC=${DEVKITPRO}/devkitPPC
|
|
|
|
before_install:
|
|
- wget http://sourceforge.net/projects/devkitpro/files/Automated%20Installer/devkitPPCupdate.pl
|
|
|
|
install:
|
|
- sudo perl devkitPPCupdate.pl
|
|
|
|
script:
|
|
- cd GRRLIB && sudo -E make clean all install && cd ..
|
|
- cd examples && make && cd ..
|
|
- cd GRRLIB && sudo -E make PLATFORM=cube clean all && cd ..
|