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

12 lines
95 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
A=
B=
ifeq "$(A)" "1"
B=true
else
B=false
endif
do:
@echo $(A) .. $(B)