mirror of
https://github.com/logos-messaging/storenode-messages-counter.git
synced 2026-01-02 14:13:11 +00:00
12 lines
172 B
Makefile
12 lines
172 B
Makefile
|
|
SHELL := bash # the shell used internally by Make
|
|
|
|
GOCMD ?= $(shell which go)
|
|
|
|
.PHONY: all build
|
|
|
|
all: build
|
|
|
|
build:
|
|
${GOCMD} build -o build/storeverif ./cmd/storeverif
|