[bug #59318] Add option ('-g') of generating build graph for updated goals

2020-11-15 Thread Jonas Danielsson
Follow-up Comment #4, bug #59318 (project make): [comment #3 comment #3:] > Hi! > > Nice proposal. The Remake project (http://bashdb.sourceforge.net/remake/) already implements something like this. We even tried it on our project.' Hi, thanks! I just tried remake. The --profile option feels

[bug #58556] Make is confused by a target named ".o" and neither emptying .SUFFIXES nor MAKEFLAGS=r can prevent this

2020-11-15 Thread Paul D. Smith
Follow-up Comment #7, bug #58556 (project make): Duh that should be: "If .SUFFIXES does not contain ".o", then the rule is a target rule not an inference rule." ___ Reply to this item at:

[bug #58556] Make is confused by a target named ".o" and neither emptying .SUFFIXES nor MAKEFLAGS=r can prevent this

2020-11-15 Thread Paul D. Smith
Follow-up Comment #6, bug #58556 (project make): I agree this is not right. Here is what happens: First, the command line is parsed which creates a goal target named ".o". Second, because "-r" was not given, the default rules are created. One of the default rules is the suffix rule for ".o",