summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2022-04-19 11:30:47 -0400
committerTavian Barnes <tavianator@tavianator.com>2022-04-21 20:03:16 -0400
commitaa6797db463b5143c5ca05bb5e90b05d2f72122a (patch)
tree4ad640bd5d851b7c594fa2f5efaa872ceece6941
parent7f37e4131c24c08e0575db06ccf7ea986c4cc190 (diff)
downloadbfs-aa6797db463b5143c5ca05bb5e90b05d2f72122a.tar.xz
docs: Move some documentation into a subfolder
-rw-r--r--Makefile2
-rw-r--r--docs/CHANGELOG.md (renamed from RELEASES.md)0
-rw-r--r--docs/CONTRIBUTING.md (renamed from CONTRIBUTING.md)2
-rw-r--r--docs/bfs.1 (renamed from bfs.1)0
4 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 459a406..c10814a 100644
--- a/Makefile
+++ b/Makefile
@@ -280,7 +280,7 @@ install:
$(MKDIR) $(DESTDIR)$(PREFIX)/bin
$(INSTALL) -m755 bfs $(DESTDIR)$(PREFIX)/bin/bfs
$(MKDIR) $(DESTDIR)$(MANDIR)/man1
- $(INSTALL) -m644 bfs.1 $(DESTDIR)$(MANDIR)/man1/bfs.1
+ $(INSTALL) -m644 docs/bfs.1 $(DESTDIR)$(MANDIR)/man1/bfs.1
$(MKDIR) $(DESTDIR)$(PREFIX)/share/bash-completion/completions
$(INSTALL) -m644 completions/bfs.bash $(DESTDIR)$(PREFIX)/share/bash-completion/completions/bfs
$(MKDIR) $(DESTDIR)$(PREFIX)/share/zsh/site-functions
diff --git a/RELEASES.md b/docs/CHANGELOG.md
index aafc497..aafc497 100644
--- a/RELEASES.md
+++ b/docs/CHANGELOG.md
diff --git a/CONTRIBUTING.md b/docs/CONTRIBUTING.md
index 28bfac2..77e8e2c 100644
--- a/CONTRIBUTING.md
+++ b/docs/CONTRIBUTING.md
@@ -138,7 +138,7 @@ Hacking
`bfs` is written in [C](https://en.wikipedia.org/wiki/C_(programming_language)), specifically [C11](https://en.wikipedia.org/wiki/C11_(C_standard_revision)).
You can get a feel for the coding style by skimming the source code.
-[`main.c`](src/main.c) contains an overview of the rest of source files.
+[`main.c`](/src/main.c) contains an overview of the rest of source files.
A quick summary:
- Tabs for indentation, spaces for alignment.
diff --git a/bfs.1 b/docs/bfs.1
index 53a9831..53a9831 100644
--- a/bfs.1
+++ b/docs/bfs.1