aboutsummaryrefslogtreecommitdiffstats
path: root/testcase/if_recipe.mk
blob: a115de3434cb51dacce779c3b264144819f7c376 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
test1:
	echo TEST
ifdef UNDEFINED
	echo FAIL
else
	echo PASS
endif
	echo DONE

test2:
ifdef UNDEFINED
	echo FAIL
else
	echo PASS
endif
	echo DONE

test3:
ifndef UNDEFINED
	echo PASS
else
	echo FAIL
endif
	echo DONE