From 2e6e091858e9c715c2a19607659d90cbf161ee06 Mon Sep 17 00:00:00 2001 From: contact Date: Fri, 27 Mar 2020 18:23:41 +0000 Subject: [PATCH] Move man page to doc/ git-svn-id: file:///srv/svn/repo/suika/trunk@169 f0ae65fe-ee39-954e-97ec-027ff2717ef4 --- 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