aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a75b758..55b8578 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,10 @@
-powxy: *.go version.go
+powxy: *.go version.go wasm/solver.wasm
go build -o powxy
version.go:
printf 'package main\n\nfunc init() {\n\tglobal.Version = "%s"\n}\n' $(shell git describe --tags --always --dirty) > $@
+wasm/solver.wasm: wasm/solver.c wasm/sha256.c wasm/sha256.h
+ clang --target=wasm32 -nostdlib -Wl,--no-entry -Wl,--export-all -o wasm/solver.wasm wasm/solver.c wasm/sha256.c
+
.PHONY: version.go