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