2024-05-09 16:33:15 -04:00

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