toyohime/Makefile
yakumo.izuru e60a0bf01a 月の首都はそれがあるべき場所に戻っています
git-svn-id: file:///srv/svn/repo/toyohime/trunk@115 922d331f-388e-da47-97a9-ad700dc0b8b9
2025-04-17 23:12:28 +00:00

25 lines
547 B
Makefile

GO ?= go
GOFLAGS ?= -v -ldflags "-w -X `${GO} list`.Version=${VERSION} -X `${GO} list`.Build=${BUILD}"
PREFIX ?= /usr/local
GOARCH ?= amd64
GOOS ?= linux
VERSION = 0.4.0
BUILD = `date +%Y-%m-%d:%H:%M:%S%z`
all: toyohime
toyohime:
${GO} build ${GOFLAGS} ./cmd/toyohime
clean:
rm toyohime
install:
install -m0755 toyohime ${DESTDIR}${PREFIX}/bin/toyohime
install -Dm0044 toyohime.1 ${DESTDIR}${PREFIX}/man/man1/toyohime.1
test:
${GO} test .
uninstall:
rm -f ${DESTDIR}${PREFIX}/bin/toyohime
rm -f ${DESTDIR}${PREFIX}/man/man1/toyohime.1