Go to file
2021-09-24 19:49:11 +02:00
.github/workflows [Workflow] Use Environment Files instead of ::set-env 2020-11-26 23:33:17 +01:00
src Formatting and cleanup 2021-09-24 19:49:11 +02:00
.gitignore Write the FSA fd to the global variable to be able to close it on exit 2020-10-16 19:21:26 +02:00
Dockerfile Update Dockerfile 2021-09-24 19:41:27 +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