blob: 07d1586cd664373b7ea1c54011c46f0a52bf4d45 [file] [log] [blame]
Minos Galanakis2c824b42025-03-20 09:28:45 +00001INCLUDE := -I../include/ -I./psa_manifest
2
3.PHONY: all clean
4
5all:
6 psa_autogen manifest.json
7 $(CC) psa_ff_bootstrap_TEST_PARTITION.c -lpsaff -o partition
8 $(CC) client.c -lpsaff -o client
9
10clean:
11 rm -rf psa_manifest
12 rm -f client partition psa_ff_bootstrap_TEST_PARTITION.c