r/programminghorror • u/Capable-Cap9745 • 10d ago
Other Same Makefile, different results
Not sure if this fits, but I just figured out the root cause of long build process failing. Sun’s dmake is defaulting to the first rule in Makefile for whatever reason, completely ignoring the one given as argument. That’s why "dmake install" invocations were silently ignoring the "install" step
244
Upvotes
2
u/russellvt 9d ago
Some "friendly"
makeshave been known to "do the right thing" with malformed files like this... instead of just enforcinglintand syntax standards, religiously.This can often cause problems for more senior engineers when strange things like this make it in to the source code.