12 lines
100 B
Makefile
12 lines
100 B
Makefile
PASS:=\#PASS
|
|
test1:
|
|
echo $(PASS)
|
|
|
|
test2:
|
|
echo \# #
|
|
|
|
define pass
|
|
\#PASS
|
|
endef
|
|
test3:
|
|
echo $(pass)
|