Leverage the fact that MK_foo are always defined to either yes or no
and bmake's robustness of variable expansion to simplify the ifdef
soup these files are growing. Use
FILES.${MK_foo}+= files
in preference to
.if ${MK_foo} != "no"
FILES+= files
.endif
separated by blank lines to save 3 lines per option we test. Include
${FILES.yes} at the end of FILES to pick these up. Assume the file
list for each option is small and stable so place it on one line. Stop
using the traditional _file = file construct as well to make things
uniform.