Go to file
2020-08-12 23:01:42 +02:00
src Workaround for restarting the current application after loading a new plugin 2020-08-09 18:14:30 +02:00
.gitignore Use libwupsbackend for wiiloading plugins 2020-05-17 20:29:29 +02:00
Dockerfile [Docker] Use the latest devkitPPC and lib versions 2020-08-12 23:01:42 +02:00
Makefile Link against -lz to be compatible to latest wut 2020-08-12 23:01:32 +02:00
README.md Add a Dockerfile 2020-06-27 12:24:14 +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 wiiloadplugin-builder

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

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