mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2024-11-16 17:07:36 +00:00
16 lines
250 B
Makefile
16 lines
250 B
Makefile
.PHONY: ui build linux64
|
|
|
|
BINARY_NAME = xmr-nodes
|
|
|
|
build: ui linux64
|
|
|
|
ui:
|
|
go generate ./...
|
|
|
|
linux64:
|
|
CGO_ENABLED=0 GOARCH=amd64 GOOS=linux go build -o bin/${BINARY_NAME}-static-linux-amd64
|
|
|
|
clean:
|
|
go clean
|
|
rm -rfv ./bin
|
|
rm -rf ./frontend/build
|