Files
thanks/Makefile
2026-02-07 10:43:08 -05:00

15 lines
338 B
Makefile

BINARY_NAME=thanks
VERSION=$(shell git describe --tags --always)
BUILD_TIME=$(shell date -u +%Y-%m-%dT%H:%M:%SZ)
LDFLAGS=-ldflags "-X main.Version=${VERSION} -X main.BuildTime=${BUILD_TIME}"
.PHONY: all test
all: build-linux
test:
go test -v ./...
build-linux:
GOOS=linux GOARCH=amd64 go build ${LDFLAGS} -o bin/thanks ./cmd/thanks