mirror of
https://github.com/status-im/keycard-go.git
synced 2025-02-01 14:47:12 +00:00
10 lines
289 B
Makefile
10 lines
289 B
Makefile
|
.PHONY: build
|
||
|
|
||
|
GOBIN = $(dir $(realpath $(firstword $(MAKEFILE_LIST))))build/bin
|
||
|
BIN_NAME="status-hardware-wallet"
|
||
|
|
||
|
build:
|
||
|
go build -i -o $(GOBIN)/$(BIN_NAME) -v ./cmd/status-hardware-wallet
|
||
|
@echo "Compilation done."
|
||
|
@echo "Run \"build/bin/$(BIN_NAME) -h\" to view available commands."
|