|
|
|
|
|
by gyepi
4437 days ago
|
|
> CXX=g++ isn't necessary either; make already knows about $(CXX) and how to link C++ programs. You're right, of course. > Also, I think you wanted .o, not o. I would, yes, but I copied the Makefile ;) Should have been clearer; I meant that redo is simpler (and more reliable) than make. For simple projects, redo scripts are a bit longer. However, as the projects grow, the redo scripts reach an asymptote whereas Makefiles don't.
The only way to reduce the growth in make is to add functions and implicit rules
which get ugly real fast. |
|