Go to file
Maschell 39d5da2301 Update the Dockerfile 2022-01-09 13:53:45 +01:00
data - Added support for multiple pages 2020-02-21 20:17:24 +01:00
src Fix launching applets and titles with updates 2022-01-09 13:37:36 +01:00
.gitignore Update the .gitignore 2020-07-05 13:22:24 +02:00
Dockerfile Update the Dockerfile 2022-01-09 13:53:45 +01:00
LICENSE Add basic rendering of a screen with particles 2020-02-19 20:19:46 +01:00
Makefile Fix compiling with latest wut, formatting, remove hbl support 2022-01-09 13:37:16 +01:00
README.md Add a Dockerfile 2020-07-05 13:24:45 +02:00
filelist.sh Fix compiling with the latest devkitppc 2020-07-05 13:24:22 +02:00

README.md

Building using the Dockerfile

It's possible to use a docker image for building. This way you don't need anything installed on your host system.

# Build docker image (only needed once)
docker build . -t launchiine-builder

# make 
docker run -it --rm -v ${PWD}:/project launchiine-builder make

# make clean
docker run -it --rm -v ${PWD}:/project launchiine-builder make clean