For make print_add, you mentioned that it will automatically track the dependencies for us. Does that mean (prior) instructions that have no dependencies will not be ran? Thanks for the informative video.
@NotesByNick Жыл бұрын
If you run make , make will run the rule for that and any rules that generate prerequisites for that target. If there is another rule in the Makefile that is not being directly run, and does not generate a prerequisite for the specified target, it will not be run.