From 540f42b21be2e7c3d3921d8e14baf4cf4f658f2c Mon Sep 17 00:00:00 2001 From: Paul Mathieu Date: Mon, 6 Oct 2025 22:43:37 +0200 Subject: [PATCH] Update ake binaries set --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 .