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

12 lines
95 B
Makefile

A=
B=
ifeq "$(A)" "1"
B=true
else
B=false
endif
do:
@echo $(A) .. $(B)