DEV Community

Discussion on: How To Make A Makefile

Collapse
 
erikpischel profile image
Erik Pischel

That's what I used in the 90s. I like the idea of dependency resolution (if you need to have multiple steps like .cpp -> .o, .o -> .exe, you say to make: I want .exe and make figures out "ok for this I need foo.o and bar.o so I need to do "gcc foo.cpp" and "bar.cpp" and then I can call the linker etc.)

Collapse
 
deciduously profile image
Ben Lovy

I agree, it's a tool that's extraordinarily well suited to its domain.