Added framework as a flattened directory
Signed-off-by: Minos Galanakis <minos.galanakis@arm.com>
diff --git a/framework/psasim/test/Makefile b/framework/psasim/test/Makefile
new file mode 100644
index 0000000..07d1586
--- /dev/null
+++ b/framework/psasim/test/Makefile
@@ -0,0 +1,12 @@
+INCLUDE := -I../include/ -I./psa_manifest
+
+.PHONY: all clean
+
+all:
+ psa_autogen manifest.json
+ $(CC) psa_ff_bootstrap_TEST_PARTITION.c -lpsaff -o partition
+ $(CC) client.c -lpsaff -o client
+
+clean:
+ rm -rf psa_manifest
+ rm -f client partition psa_ff_bootstrap_TEST_PARTITION.c