diff --git a/Makefile b/Makefile index a492098a4201..e0bba352c0e0 100644 --- a/Makefile +++ b/Makefile @@ -520,9 +520,6 @@ check-whitespace/%: % check-whitespace: check-whitespace/Makefile check-whitespace/tools/check-bolt.c $(ALL_NONGEN_SRCFILES:%=check-whitespace/%) -check-markdown: - @tools/check-markdown.sh - check-spelling: @tools/check-spelling.sh @@ -574,7 +571,7 @@ check-amount-access: @! (git grep -nE "(->|\.)(milli)?satoshis" -- "*.c" "*.h" ":(exclude)common/amount.*" ":(exclude)*/test/*" | grep -v '/* Raw:') @! git grep -nE "\\(struct amount_(m)?sat\\)" -- "*.c" "*.h" ":(exclude)common/amount.*" ":(exclude)*/test/*" -check-source: check-makefile check-source-bolt check-whitespace check-markdown check-spelling check-python check-includes check-cppcheck check-shellcheck check-setup_locale check-tmpctx check-discouraged-functions check-amount-access +check-source: check-makefile check-source-bolt check-whitespace check-spelling check-python check-includes check-cppcheck check-shellcheck check-setup_locale check-tmpctx check-discouraged-functions check-amount-access full-check: check check-source @@ -801,7 +798,7 @@ MAN1PAGES = $(filter %.1,$(MANPAGES)) MAN5PAGES = $(filter %.5,$(MANPAGES)) MAN7PAGES = $(filter %.7,$(MANPAGES)) MAN8PAGES = $(filter %.8,$(MANPAGES)) -DOC_DATA = README.md doc/INSTALL.md doc/HACKING.md LICENSE +DOC_DATA = README.md LICENSE install-data: installdirs $(MAN1PAGES) $(MAN5PAGES) $(MAN7PAGES) $(MAN8PAGES) $(DOC_DATA) @$(NORMAL_INSTALL) diff --git a/README.md b/README.md index a8e8aa2bd436..ecc90dc10a88 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ There are 4 supported installation options: - Installation of a pre-compiled binary from the [release page][releases] on GitHub. - Using one of the [provided docker images][dockerhub] on the Docker Hub. - - Compiling the source code yourself as described in the [installation documentation](doc/INSTALL.md). + - Compiling the source code yourself as described in the [installation documentation](doc/getting-started/getting-started/installation.md). ### Starting `lightningd` @@ -210,7 +210,7 @@ If you encrypt your `hsm_secret`, you will have to pass the `--encrypted-hsm` st ### Developers -Developers wishing to contribute should start with the developer guide [here](doc/HACKING.md). +Developers wishing to contribute should start with the developer guide [here](doc/contribute-to-core-lightning/coding-style-guidelines.md). You should also configure with `--enable-developer` to get additional checks and options. [blockstream-store-blog]: https://blockstream.com/2018/01/16/en-lightning-charge/ diff --git a/tools/check-markdown.sh b/tools/check-markdown.sh deleted file mode 100755 index 612988807a52..000000000000 --- a/tools/check-markdown.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash - -if ! diff -u <(grep -E 'sudo apt-get install .*git' README.md) \ - <(grep -E 'sudo apt-get install .*git' doc/INSTALL.md); then - echo "Dependencies listed in README.md are not identical to those listed in doc/INSTALL.md (see above). Please fix." - exit 1 -fi