Sign in
android
/
platform
/
build
/
kati
/
e6f6858860e28b4336ae5d64d42b5080a6fbe4c1
/
.
/
testcase
/
if_recipe.mk
blob: a115de3434cb51dacce779c3b264144819f7c376 [
file
] [
log
] [
blame
]
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