We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33f789c commit dc5baebCopy full SHA for dc5baeb
helpers-core/make-extract-targets.awk
@@ -29,7 +29,11 @@ NR == 1, /^# +Make data base/ { next; }
29
/^# +Variables/, /^# +Files/ { next; }
30
31
# skip not-target blocks
32
-/^# +Not a target/, /^$/ { next; }
+/^# +Not a target/, /^$/ {
33
+ is_target_block = 0;
34
+ target = "";
35
+ next;
36
+}
37
38
# The stuff above here describes lines that are not
39
# explicit targets or not targets other than special ones
0 commit comments