Go to file
2021-01-09 16:01:53 +01:00
.github/workflows [Workflow] Use Environment Files instead of ::set-env 2021-01-09 16:00:05 +01:00
src Adapt to new plugin identifier 2020-08-29 19:50:17 +02:00
.gitignore Use libwupsbackend for wiiloading plugins 2020-05-17 20:29:29 +02:00
Dockerfile Update the Dockerfile to use the latest images 2021-01-09 16:01:53 +01: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