1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 05:20:26 +00:00
mycorrhiza/Makefile
Umar Getagazov 502b4bb339 Use sbin instead of bin
Go compiles everything statically, and resulting programs have no
runtime dependencies. We don't depend on any dynamically linked library.
2022-03-24 23:43:00 +07:00

21 lines
423 B
Makefile

.POSIX:
.SUFFIXES:
PREFIX=/usr/local
SBINDIR=$(PREFIX)/sbin
MANDIR=$(PREFIX)/share/man
GO=go
all: mycorrhiza
mycorrhiza:
$(GO) generate $(GOFLAGS)
$(GO) build $(GOFLAGS) -o mycorrhiza .
install:
mkdir -m755 -p $(DESTDIR)$(SBINDIR) $(DESTDIR)$(MANDIR)/man1
install -m755 mycorrhiza $(DESTDIR)$(SBINDIR)/mycorrhiza
install -m644 doc/mycorrhiza.1 $(DESTDIR)$(MANDIR)/man1/mycorrhiza.1
.PHONY: all mycorrhiza install