Does make suck?

12 March 2025

Does make suck, actually?

GNU make is completely ubiquitous. It is probably the pre-eminent software available for building programs. At the time of writing this, I even use it to build this site. But over time I have come to believe some of its features are actually problems, and perhaps something should replace it.

What is make

There are many perfectly good explanations of what make is and does online. I will just summarise here: make is a program, which takes as input a specification of a project (in a special language, written in a so-called Makefile). The specification consists of a list of rules, where each rule declares:

make has the appealing feature that it will try not to re-run unnecessary commands. It determines this by looking at the timestamps of the various dependencies, to see if they’ve been modified. It doesn’t look in the file to see if you actually changed anything; it just says “this got touched”, I’ll rebuild now”.

This actually works extremely well in many cases – well enough to have become the standard tool. But I have come to regard it as problematic.

The good

I think there is also a lot of help for building C projects specifically, but I don’t really understand what.

The bad

Some behaviour I think is just wrong and actually causes problems. I don’t think make can fix these issues without fundamentally changing.

The ugly

Some design choices are a matter of taste, and not overtly wrong. But I think I dislike them anyway.

What else is there?

I don’t know, really. There are a whole bunch of build systems, but all of them seem to have a steeper learning curve than make. There is bazel , the build system Google uses. Their abstraction seems to represent the concept of build actions and dependencies clearly, so I think it should solve the major “bad” behaviour I mentioned above. But when I go looking for testimonials, I see things like “Bazel is ruining my life”. So I don’t want to try that so much.

At the end of one of the FOSDEM talks there was a group chat about whether guix could represent a build process itself. After all, this is what a derivation is supposed to be, I think? I guess I should read about it.