zephyr: look for board-specific configuration

To build Zephyr as a bootloader will typically require
overriding the default flash regions where the binary lives,
and possibly other board-specific configuration directives.
Look for boot/zephyr/targets/$(BOARD).conf and include it
in the kernel configuration if it exists.

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
diff --git a/Makefile b/Makefile
index 1c726bb..25d06de 100644
--- a/Makefile
+++ b/Makefile
@@ -29,6 +29,9 @@
 # mcuboot/Zephyr.  These can be found in ``boot/zephyr/targets``
 BOARD ?= qemu_x86
 
+# Additional board-specific Zephyr configuration
+CONF_FILE += $(wildcard boot/zephyr/targets/$(BOARD).conf)
+
 # The source to the Zephyr-specific code lives here.
 SOURCE_DIR = boot/zephyr