From 83eaad7292d9220f3b44e619ceecadd20aee7e22 Mon Sep 17 00:00:00 2001 From: Deluan Date: Fri, 26 Dec 2025 14:53:41 -0500 Subject: [PATCH] feat: update Makefile and README to clarify Go plugin usage Signed-off-by: Deluan --- plugins/examples/Makefile | 6 +++--- plugins/examples/README.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/examples/Makefile b/plugins/examples/Makefile index ee1548217..842c8261f 100644 --- a/plugins/examples/Makefile +++ b/plugins/examples/Makefile @@ -9,12 +9,12 @@ TINYGO := $(shell command -v tinygo 2> /dev/null) .DEFAULT_GOAL := help help: - @echo "Available plugins:" + @echo "Available Go plugins:" @$(foreach p,$(PLUGINS),echo " $(p)";) @echo "" @echo "Usage:" - @echo " make Build a specific plugin (e.g., make $(firstword $(PLUGINS)))" - @echo " make all Build all plugins" + @echo " make .wasm Build a specific plugin (e.g., make $(firstword $(PLUGINS)).wasm)" + @echo " make all Build all Go plugins" @echo " make clean Remove all built plugins" all: $(PLUGINS:%=%.wasm) diff --git a/plugins/examples/README.md b/plugins/examples/README.md index 08b17135d..b4f4a83c6 100644 --- a/plugins/examples/README.md +++ b/plugins/examples/README.md @@ -13,10 +13,10 @@ This folder contains example plugins for Navidrome that demonstrate how to build ### Build all plugins ```bash -make +make all ``` -This will compile all example plugins and place the `.wasm` files in this directory. +This will compile all (Go) example plugins and place the `.wasm` files in this directory. ### Build a specific plugin