Go to the documentation of this file. 1 #define break_HELP_TEXT \ 2 "Set a breakpoint at a target or line number; also show breakpoints.\n" \ 4 "With a target name or a line number, set a break before running commands\n" \ 5 "of that target or line number. Without argument, list all breakpoints.\n" \ 7 "For a given target, there are 3 places where one may want to stop at;\n" \ 8 "that name can be given as a last option. The stopping points are:\n" \ 10 "- before target prerequisite checking: `prereq`\n" \ 11 "- after target prerequisite checking but before running commands: `run`\n" \ 12 "- after target is complete: `end`\n" \ 14 "Giving `all` will stop in all of the above places. The default behavior is `run`.\n" \ 16 "If no location specification is given, use the current target.\n" \ 21 " break # list all breakpoints\n" \ 22 " break 10 # Break on line 10 of the Makefile we are\n" \ 23 " # currently stopped at\n" \ 24 " break tests # Break on the \"tests\" target\n" \ 25 " break tests prereq # Break on the \"tests\" target before dependency checking is done\n" \