This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
Files
srv/Makefile
2020-03-31 21:31:52 -04:00

11 lines
136 B
Makefile

BIN ?= dist/srv
build: ## Builds the binary
go build -o $(BIN)
.PHONY: build
test: ## Run unit tests
go test -v ./...
.PHONY: test