5 lines
104 B
Makefile
5 lines
104 B
Makefile
|
SOURCES := $(shell find -name "*.go")
|
||
|
|
||
|
main.wasm: $(SOURCES)
|
||
|
GOOS=js GOARCH=wasm go build -o main.wasm
|