Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
10 lines
318 B
Makefile
10 lines
318 B
Makefile
# Fake sample plugins used for testing
|
|||
PLUGINS := fake_album_agent fake_artist_agent fake_scrobbler multi_plugin fake_init_service unauthorized_plugin
|
|||
|
|||
all: $(PLUGINS:%=%/plugin.wasm)
|
|||
|
|||
clean:
|
|||
rm -f $(PLUGINS:%=%/plugin.wasm)
|
|||
|
|||
%/plugin.wasm: %/plugin.go
|
|||
GOOS=wasip1 GOARCH=wasm go build -buildmode=c-shared -o $@ ./$*
|