allwinner_a64/android/build/kati/testcase/if_recipe.mk
2018-08-08 16:48:17 +08:00

24 lines
215 B
Makefile

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