mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-05 20:41:32 +00:00
14 lines
224 B
Makefile
14 lines
224 B
Makefile
.POSIX:
|
|
|
|
# This does not work: unquoted variable error.
|
|
multiline_inner := multiline_2
|
|
define multiline =
|
|
@echo multiline_1
|
|
@echo $(multiline_inner)
|
|
endef
|
|
|
|
.PHONY: all
|
|
|
|
all:
|
|
@# [ "$(multiline_TODO)" = "$$(printf '1\n2)"' ]
|