move manual into a doc subdirectory

This commit is contained in:
Michele Guerini Rocco 2021-12-15 02:30:51 +01:00
parent cb873fbcf6
commit 75c30ee834
Signed by: rnhmjoj
GPG Key ID: BFBAF4C975F76450
2 changed files with 2 additions and 2 deletions

View File

@ -80,10 +80,10 @@ clean:
rm -r $(BUILDDIR) rm -r $(BUILDDIR)
# Install libraries, binaries and man pages # Install libraries, binaries and man pages
install: $(BINARIES) $(LIBRARIES) gray.1 install: $(BINARIES) $(LIBRARIES) doc/gray.1
install -Dm555 -t $(PREFIX)/bin $(BINDIR)/* install -Dm555 -t $(PREFIX)/bin $(BINDIR)/*
install -Dm555 -t $(PREFIX)/lib $(LIBDIR)/* install -Dm555 -t $(PREFIX)/lib $(LIBDIR)/*
install -Dm644 -t $(PREFIX)/share/man/man1 gray.1 install -Dm644 -t $(PREFIX)/share/man/man1 doc/gray.1
# GRAY binary # GRAY binary
$(GRAY): $(shell ./depend $(OBJDIR)/main.o) | $(BINDIR) $(GRAY): $(shell ./depend $(OBJDIR)/main.o) | $(BINDIR)

View File