mirror of
https://github.com/vim/vim.git
synced 2026-05-06 20:30:02 -04:00
450895d86b
fixes: #19986 Co-authored-by: Anton Khirnov <anton@khirnov.net> Signed-off-by: Christian Brabandt <cb@256bit.org>
20 lines
166 B
Makefile
20 lines
166 B
Makefile
# comment
|
|
|
|
a = b
|
|
$(a) = 1
|
|
|
|
$(a)::
|
|
@echo double-colon rule
|
|
|
|
$(a) += output
|
|
|
|
define say
|
|
echo $1
|
|
endef
|
|
|
|
default:
|
|
$(call say,"Hello (world)!")
|
|
|
|
foo:
|
|
echo "bar$$" baz
|