Files
mikuru/Makefile
2025-12-30 00:13:59 -03:00

14 lines
298 B
Makefile

VERSION = `git describe --tags` || echo MIRAI
GO = go
GOFLAGS = -v -buildvcs=false -buildmode=exe -ldflags "-w -X `${GO} list`.Version=${VERSION}"
build: mikuru-login mikuru-post
mikuru-login:
${GO} build ${GOFLAGS} ./cmd/$@
mikuru-post:
${GO} build ${GOFLAGS} ./cmd/$@
clean:
rm -f mikuru-*