6
Is it possible to use make to automatically link files well?
(programming.dev)
Welcome to the C community!
C is quirky, flawed, and an enormous success.
... When I read commentary about suggestions for where C should go, I often think back and give thanks that it wasn't developed under the advice of a worldwide crowd.
... The only way to learn a new programming language is by writing programs in it.
🌐 https://en.cppreference.com/w/c
But we do. Check out CMake.
https://cmake.org/examples/
Originally CMake was a higher level abstraction over make, and generated makefiles based from the high-level project description. Nowadays it supports other build automation tools, such as Ninja, Visual Studio, Xcode, etc.
Ah cmake. Boring but definitely works reliably for C/C++
What do you mean by "boring" ?
It's boring like a good tool should be: does what it says. No fuss. No cloud of hype.