16 lines
337 B
Makefile
Raw Permalink Normal View History

2024-05-09 16:33:15 -04:00
2024-05-16 19:12:33 -04:00
.PHONY: all build lint-install lint
2024-05-09 16:33:15 -04:00
all: build
build:
2024-05-20 10:10:28 -04:00
go build -tags=gowaku_no_rln -o build/storemsgcounter ./cmd/storemsgcounter
2024-05-16 19:12:33 -04:00
lint-install:
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | \
bash -s -- -b $(shell go env GOPATH)/bin v1.52.2
lint:
@echo "lint"
@golangci-lint run ./...