Go to file
2022-01-30 13:49:58 +01:00
.github/workflows [CI] Fix asset content type 2022-01-26 14:20:31 +01:00
source Only do logging when built with make DEBUG=1 2022-01-26 14:20:54 +01:00
.gitignore Use WUMS 0.2.1 2021-10-31 16:35:33 +01:00
Dockerfile WUMS 0.3.1 support 2022-01-26 14:20:14 +01:00
Makefile Fix building with make DEBUG=1 2022-01-30 13:49:58 +01:00
README.md Update Readme 2021-10-31 16:39:45 +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 usbserialloggermodule-builder

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

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