Go to file
2021-10-31 16:35:33 +01:00
.github/workflows Use WUMS 0.2.1 2021-10-31 16:35:33 +01:00
source Use WUMS 0.2.1 2021-10-31 16:35:33 +01:00
.gitignore Use WUMS 0.2.1 2021-10-31 16:35:33 +01:00
Dockerfile Use WUMS 0.2.1 2021-10-31 16:35:33 +01:00
Makefile Use WUMS 0.2.1 2021-10-31 16:35:33 +01:00
README.md Use WUMS 0.2.1 2021-10-31 16:35:33 +01: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 dynloadpatchmodule-builder

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

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