From c262fe4b7520580f8df11d207ea56b594d944d64 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Sun, 4 Nov 2018 16:47:40 +0100 Subject: [PATCH] Add cryptocore building Signed-off-by: Knut Ahlers --- Makefile | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 9e38873..3504aad 100644 --- a/Makefile +++ b/Makefile @@ -8,15 +8,24 @@ build: bindata.go container: bindata.go docker build . +vue_dev: + docker run --rm -i \ + -v "$(CURDIR):/src" \ + -w "/src" -u $(shell id -u) \ + -p 8080:8080 \ + node:10-alpine \ + sh -exc "npm ci && npm run serve" + build_vue: docker run --rm -i \ -v "$(CURDIR):/src" \ -w "/src" \ node:10-alpine \ - sh -exc "npm ci && npm run build && chown -R $(shell id -u):$(shell id -g) ." + sh -exc "npm ci && npm run build" +.PHONY: bindata.go bindata.go: build_vue - go-bindata -o bindata.go assets/... dist/... + go-bindata -o bindata.go dist/... publish: curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh @@ -25,4 +34,10 @@ publish: prepare-gae-deploy: rm -rf Dockerfile vendor -.PHONY: bindata.go +.PHONY: public/wasm_exec.js +public/wasm_exec.js: + curl -sSfLo public/wasm_exec.js "https://raw.githubusercontent.com/golang/go/go1.11/misc/wasm/wasm_exec.js" + +.PHONY: public/cryptocore.wasm +public/cryptocore.wasm: + GOOS=js GOARCH=wasm go build -o public/cryptocore.wasm ./cryptocore