Advertisement

Make files?

Started by January 06, 2003 06:33 PM
3 comments, last by DarkHamster 21 years, 10 months ago
A simple (and stupid) question: what''s the point of makefiles printing out all that wierd junk they do?

"There is no dark side of the moon really,
As a matter of fact, its all dark."


"There is no dark side of the moon really,
As a matter of fact, its all dark."
The only things the makefile prints is a message about entering and leaving directories. Everything else is the commands the makefile executes, such as the command lines passed to, and the output of, the compiler.
Advertisement
Yeah, most of the printed stuff are the commands being executed and the compiler output. It''s a good thing (TM), so that you know what the computer is doing... Sorta.
if it really bothers you stick a @ before each command in the makefile so it doesn''t print the command.
it doesn''t bother me, I just wanted to know


"There is no dark side of the moon really,
As a matter of fact, its all dark."

This topic is closed to new replies.

Advertisement