Package: vim-runtime
Version: 2:7.3.547-6
Severity: minor
Hi!
The current make syntax support does not highlight correctly the
target commands after inserting blank lines or make conditionals in
the target context. Attached is an example file which should show both
cases. All echo commands should be highligthed but the later ones do
not.
Thanks,
Guillem
variable = first
target: target-a target-b
target-a:
echo command-a-1
# empty command follows
# shell comment
echo command-a-2
# blank line follows
echo command-a-3
variable = middle
target-b:
echo command-b-1
ifeq ($(variable),last)
echo command-b-cond
endif
echo command-b-var $(variable)
variable = last