12 lines
172 B
Makefile
Raw Normal View History

2024-05-09 16:33:15 -04:00
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