RosettaCodeData/Task/Conditional-structures/Make/conditional-structures-5.make
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

11 lines
95 B
Makefile

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