source: code/trunk/Makefile@ 69

Last change on this file since 69 was 69, checked in by yakumo.izuru, 7 weeks ago

もっと頑張れよ、魔理沙

File size: 582 bytes
Line 
1GO ?= go
2GOFLAGS ?= -v -ldflags "-w -X `${GO} list`.Version=${VERSION}"
3CGO ?= 0
4
5VERSION = 2024.02.10
6PREFIX ?= /usr/local
7
8all: marisa marisa-trash
9
10marisa:
11 CGO_ENABLED=${CGO} ${GO} build ${GOFLAGS} ./cmd/marisa
12marisa-trash:
13 CGO_ENABLED=${CGO} ${GO} build ${GOFLAGS} ./cmd/marisa-trash
14clean:
15 rm -f marisa marisa-trash
16install:
17 install -Dm0755 marisa ${PREFIX}/bin/marisa
18 install -Dm0755 marisa-trash ${PREFIX}/bin/marisa-trash
19 install -Dm0644 marisa.1 ${PREFIX}/man/man1/marisa.1
20 install -Dm0644 marisa.conf.5 ${PREFIX}/man/man5/marisa.conf.5
21.PHONY: marisa marisa-trash
Note: See TracBrowser for help on using the repository browser.