Make the efi include dir configurable

When crosscompiling, it's common to need to specify a different include dir
location.

Signed-off-by: Darren Hart <dvhart@linux.intel.com>
diff --git a/Makefile b/Makefile
index e5deb7b..dffc1c1 100644
--- a/Makefile
+++ b/Makefile
@@ -48,10 +48,12 @@
 	FORMAT=efi-app-$(ARCH)
 endif
 
+INCDIR := /usr/include
+
 CRT0 := $(LIBDIR)/gnuefi/crt0-efi-$(ARCH).o
 LDSCRIPT := $(LIBDIR)/gnuefi/elf_$(ARCH)_efi.lds
 
-CFLAGS=-I. -I/usr/include/efi -I/usr/include/efi/$(ARCH) \
+CFLAGS=-I. -I$(INCDIR)/efi -I$(INCDIR)/efi/$(ARCH) \
 		-DEFI_FUNCTION_WRAPPER -fPIC -fshort-wchar -ffreestanding \
 		-Wall -Ifs/ -Iloaders/ -D$(ARCH) -Werror