diff --git a/Makefile b/Makefile index 27474c5..d5a2a78 100644 --- a/Makefile +++ b/Makefile @@ -11,13 +11,13 @@ dev: dev-image ## Launch a dev container .PHONY: binaries binaries: ## Build all small binaries + docker build --build-arg TARGET=call.bin -o . --target=export . docker build --build-arg TARGET=readfloppy.bin -o . --target=export . docker build --build-arg TARGET=writefloppy.bin -o . --target=export . + docker build --build-arg TARGET=copy.bin -o . --target=export . + docker build --build-arg TARGET=format.bin -o . --target=export . docker build --build-arg TARGET=crc16.bin -o . --target=export . docker build --build-arg TARGET=hello.bin -o . --target=export . - docker build --build-arg TARGET=copy.bin -o . --target=export . - docker build --build-arg TARGET=call.bin -o . --target=export . - docker build --build-arg TARGET=format.bin -o . --target=export . docker build --build-arg TARGET=readio.bin -o . --target=export . docker build --build-arg TARGET=writeio.bin -o . --target=export .