psa: Include PSA headers for tests and programs

Programs and tests need to be able to use PSA header files when
USE_CRYPTO_SUBMODULE and MBEDTLS_USE_PSA_CRYPTO are set. Add the crypto
submodule include folder, which contains psa headers, after the main
include folder so that psa headers can be found and crypto submodule
headers don't take precedence over mbedtls headers.
diff --git a/programs/Makefile b/programs/Makefile
index d379ddf..c88a6c7 100644
--- a/programs/Makefile
+++ b/programs/Makefile
@@ -16,6 +16,8 @@
 
 ifdef USE_CRYPTO_SUBMODULE
 LOCAL_LDFLAGS += -L../crypto/library
+LOCAL_CFLAGS += -I../crypto/include
+LOCAL_CXXFLAGS += -I../crypto/include
 endif
 
 ifndef SHARED