
Signed-off-by: Aoi K <koizumi.aoi@chaotic.ninja> git-svn-id: file:///srv/svn/repo/toyohime/trunk@108 922d331f-388e-da47-97a9-ad700dc0b8b9
11 lines
202 B
Makefile
11 lines
202 B
Makefile
GO ?= go
|
|
GOFLAGS ?= -v
|
|
PREFIX ?= /usr/local
|
|
|
|
vanityserver:
|
|
$(GO) build $(GOFLAGS) ./cmd/$@
|
|
install:
|
|
install -m0755 vanityserver $(PREFIX)/bin/vanityserver
|
|
uninstall:
|
|
rm -f $(PREFIX)/bin/vanityserver
|