# Make sure to have a file named prerequisite nearby this makefile

define two-lines =
one
two
endef

target: requisite
	echo There should be two more lines after this:
	$(info $(two-lines))
