RosettaCodeData/Task/Conditional-structures/Make/conditional-structures-5.make

12 lines
95 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
A=
B=
ifeq "$(A)" "1"
B=true
else
B=false
endif
do:
@echo $(A) .. $(B)