Go to file
2022-01-30 20:52:32 +01:00
.github/workflows [Workflow] Use Environment Files instead of ::set-env 2020-11-26 23:33:17 +01:00
src Give the thread a proper name 2022-01-30 20:52:32 +01: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 use WUPS 0.6.1 2021-10-02 11:22:10 +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