diary

Text-based journaling program
git clone https://git.in0rdr.ch/diary.git
Log | Files | Refs | README | LICENSE

commit 3068d4b4d6f6b3cb54fcd6a5664bb37c9562a6bf
parent 9002338c8f06b94d94d7a314c94aede41ff86fdc
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Sun,  4 Jul 2021 22:43:24 +0200

move man1 dir

Diffstat:
MMakefile | 6+++---
Rman/diary.1 -> man1/diary.1 | 0
Rman/diary.1.html -> man1/diary.1.html | 0
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -6,7 +6,7 @@ PREFIX ?= /usr/local BINDIR ?= $(DESTDIR)$(PREFIX)/bin MANDIR := $(DESTDIR)$(PREFIX)/share/man -MAN1 = man/diary.1 +MAN1 = man1/diary.1 CC = gcc CFLAGS = -Wall \ @@ -38,8 +38,8 @@ clean: install: $(TARGET) cp $(TARGET) $(BINDIR)/$(TARGET) install -d $(MANDIR)/man1 - install -m644 $(MAN1) $(MANDIR)/man1/$(MAN1) + install -m644 $(MAN1) $(MANDIR)/$(MAN1) uninstall: rm -f $(BINDIR)/$(TARGET) - rm -f $(MANDIR)/man1/$(MAN1) + rm -f $(MANDIR)/$(MAN1) diff --git a/man/diary.1 b/man1/diary.1 diff --git a/man/diary.1.html b/man1/diary.1.html