|
|
|
|
|
by maxcoder4
808 days ago
|
|
I never got the hate for Makefiles. Granted I mostly use them for simple projects, but compiling C project takes just a few lines of code (compile .c to .o, .o to executable, optionally provide some PHONY convenience utils) and is very readable and hackable. What's not to love? I'm sure I'm missing something, and it's possible that they don't scale well, but I prefer it to any other could system for small C projects. |
|
That said, autotools, with its multiple layers of file generation, makes debugging rather annoying. And it's generally much easier to fix a broken Makefile than figuring out why autotools goes wrong.