mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 20:30:57 -05:00
8 lines
206 B
Makefile
8 lines
206 B
Makefile
|
|
all:
|
|
@for x in "" A= A=42; do ${.MAKE} -f ${MAKEFILE} show $$x; done
|
|
|
|
show:
|
|
@echo "The answer is ${A:?known:unknown}"
|
|
@echo "The answer is ${A:?$A:unknown}"
|
|
@echo "The answer is ${empty(A):?empty:$A}"
|