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

11 lines
168 B
Makefile

C=0
if: true false
true:
@expr $(C) >/dev/null && exit 0 || exit 1
@echo "was true."
false:
@expr $(C) >/dev/null && exit 1 || exit 0
@echo "was false."