RosettaCodeData/Task/Conditional-structures/Make/conditional-structures-5.make
2023-07-01 13:44:08 -04:00

11 lines
95 B
Makefile

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