Go to file
2020-08-12 23:13:17 +02:00
src Use WHB for logging 2020-06-27 12:27:39 +02:00
.gitignore Update the .gitignore 2020-06-27 12:27:56 +02:00
Dockerfile [Docker] Use latest devkitPPC and lib versions 2020-08-12 23:13:17 +02:00
Makefile Add $(WUT_ROOT)/usr to LIBDIRS 2020-06-27 12:37:49 +02:00
README.md Add a Dockerfile 2020-06-27 12:38:19 +02:00

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 ftpiiuplugin-builder

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

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