From 4ba2a05ebf33b8f1bb1cb63b1800e7a7e7e35385 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 27 Mar 2020 19:23:41 +0100 Subject: [PATCH] Move man page to doc/ --- Makefile | 10 +++++----- soju.1.scd => doc/soju.1.scd | 0 2 files changed, 5 insertions(+), 5 deletions(-) rename soju.1.scd => doc/soju.1.scd (100%) diff --git a/Makefile b/Makefile index c9c64b1..13da5e4 100644 --- a/Makefile +++ b/Makefile @@ -9,19 +9,19 @@ PREFIX = /usr/local BINDIR = bin MANDIR = share/man -all: soju sojuctl soju.1 +all: soju sojuctl doc/soju.1 soju: $(GO) build $(GOFLAGS) ./cmd/soju sojuctl: $(GO) build $(GOFLAGS) ./cmd/sojuctl -soju.1: soju.1.scd - $(SCDOC) soju.1 +doc/soju.1: doc/soju.1.scd + $(SCDOC) doc/soju.1 clean: - $(RM) -rf soju sojuctl soju.1 + $(RM) -rf soju sojuctl doc/soju.1 install: all mkdir -p $(DESTDIR)$(PREFIX)/$(BINDIR) mkdir -p $(DESTDIR)$(PREFIX)/$(MANDIR)/man1 cp -f soju sojuctl $(DESTDIR)$(PREFIX)/$(BINDIR) - cp -f soju.1 $(DESTDIR)$(PREFIX)/$(MANDIR)/man1 + cp -f doc/soju.1 $(DESTDIR)$(PREFIX)/$(MANDIR)/man1 diff --git a/soju.1.scd b/doc/soju.1.scd similarity index 100% rename from soju.1.scd rename to doc/soju.1.scd