echo static multi line data in makefile
define data | |
foo | |
bar | |
baz | |
endef | |
export data | |
all: | |
@echo "$$data" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
define data | |
foo | |
bar | |
baz | |
endef | |
export data | |
all: | |
@echo "$$data" |
This comment has been minimized.
@azatoth
Great trick, just works like a charm!