soju/Makefile

35 lines
854 B
Makefile
Raw Normal View History

GO ?= go
RM ?= rm
SCDOC ?= scdoc
GOFLAGS ?=
PREFIX ?= /usr/local
BINDIR ?= bin
MANDIR ?= share/man
2023-02-06 04:16:55 -08:00
SYSCONFDIR ?= etc
config_path := $(DESTDIR)/$(SYSCONFDIR)/soju/config
goflags := $(GOFLAGS) \
-ldflags="-X 'git.sr.ht/~emersion/soju/config.DefaultPath=$(config_path)'"
2020-03-19 07:11:43 -07:00
all: soju sojudb doc/soju.1
2020-03-19 07:11:43 -07:00
soju:
2023-02-06 04:16:55 -08:00
$(GO) build $(goflags) ./cmd/soju
sojudb:
$(GO) build $(goflags) ./cmd/sojudb
2020-03-27 11:23:41 -07:00
doc/soju.1: doc/soju.1.scd
$(SCDOC) <doc/soju.1.scd >doc/soju.1
2020-03-19 07:11:43 -07:00
clean:
$(RM) -f soju sojudb doc/soju.1
install:
2020-03-19 07:11:43 -07:00
mkdir -p $(DESTDIR)$(PREFIX)/$(BINDIR)
mkdir -p $(DESTDIR)$(PREFIX)/$(MANDIR)/man1
2023-02-06 04:16:55 -08:00
mkdir -p $(DESTDIR)/$(SYSCONFDIR)/soju
2021-04-21 07:39:51 -07:00
mkdir -p $(DESTDIR)/var/lib/soju
cp -f soju sojudb $(DESTDIR)$(PREFIX)/$(BINDIR)
2020-03-27 11:23:41 -07:00
cp -f doc/soju.1 $(DESTDIR)$(PREFIX)/$(MANDIR)/man1
2023-02-06 04:16:55 -08:00
[ -f $(config_path) ] || cp -f config.in $(config_path)
.PHONY: soju sojudb clean install