soju/Makefile

28 lines
540 B
Makefile
Raw Normal View History

2020-03-19 14:11:43 +00:00
.POSIX:
.SUFFIXES:
GO = go
RM = rm
SCDOC = scdoc
GOFLAGS =
PREFIX = /usr/local
BINDIR = bin
MANDIR = share/man
2020-03-27 18:23:41 +00:00
all: soju sojuctl doc/soju.1
2020-03-19 14:11:43 +00:00
soju:
$(GO) build $(GOFLAGS) ./cmd/soju
sojuctl:
$(GO) build $(GOFLAGS) ./cmd/sojuctl
2020-03-27 18:23:41 +00:00
doc/soju.1: doc/soju.1.scd
$(SCDOC) <doc/soju.1.scd >doc/soju.1
2020-03-19 14:11:43 +00:00
clean:
2020-03-27 18:23:41 +00:00
$(RM) -rf soju sojuctl doc/soju.1
2020-03-19 14:11:43 +00:00
install: all
mkdir -p $(DESTDIR)$(PREFIX)/$(BINDIR)
mkdir -p $(DESTDIR)$(PREFIX)/$(MANDIR)/man1
cp -f soju sojuctl $(DESTDIR)$(PREFIX)/$(BINDIR)
2020-03-27 18:23:41 +00:00
cp -f doc/soju.1 $(DESTDIR)$(PREFIX)/$(MANDIR)/man1