summaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorAlexander Batischev <eual.jp@gmail.com>2022-06-12 22:23:15 +0300
committerAlexander Batischev <eual.jp@gmail.com>2022-08-27 01:27:53 +0300
commit0684f78c9b3f01258d23153ce70b37b4eb76763c (patch)
tree305342a6ad3991fef75e1bfc0f9b50bb5fe1d93c /CONTRIBUTING.md
parent8f8c1adc0da2c1c93422d4f5a5b8e185ce853104 (diff)
Get rid of depslist
This required a bump of supported GNU Make version, as Make 3.81 that's shipped by modern macOS failed to process our new Makefile. The bump shouldn't inconvenience anyone, because: - macOS users can easily get a newer Make from Homebrew, which they already use for other dependencies of ours; - non-macOS users probably have Make 4.0+ because it was released in 2013, earlier than our minimum supported C++ compiler. Fixes #792.
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md13
1 files changed, 1 insertions, 12 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 48884c17..af800c2a 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -58,18 +58,7 @@ Newsboat can be built by running:
$ make -jN
-Where `N` is again the number of threads you want to use. Please note that if
-you make changes to the included headers in any of the source files you have
-to run:
-
- make depslist
-
-This command resolves all of the necessary dependencies and writes the list
-to `mk/mk.deps`. It's important to note here that the command above only
-works correctly if your default compiler is set to GCC. If your default
-compiler is Clang you can use GCC just for this one operation:
-
- CXX=g++ make depslist
+Where `N` is again the number of threads you want to use.
Newsboat can also be [built in Docker](doc/docker.md).