From ccc1c0f061a39e3ec1e9d784a5279b244eb6aedd Mon Sep 17 00:00:00 2001 From: syumai Date: Tue, 16 Apr 2024 23:27:26 +0900 Subject: [PATCH] output build target directory name in build-examples --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4bb3c27..4859fb9 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,7 @@ test: build-examples: for dir in $(shell find ./_examples -maxdepth 1 -type d); do \ if [ $$dir = "./_examples" ]; then continue; fi; \ + echo 'build:' $$dir; \ cd $$dir && GOOS=js GOARCH=wasm go build -o ./build/app.wasm; \ cd ../../; \ - done \ No newline at end of file + done