diff --git a/rpi3.mk b/rpi3.mk index 4cfb403aa8650000df90fb07c0cd5dad2180a581..d7d44cf39cc17bf48435f69d209db20278629fcd 100644 --- a/rpi3.mk +++ b/rpi3.mk @@ -57,6 +57,10 @@ MODULE_OUTPUT ?= $(ROOT)/module_output ################################################################################ # Targets ################################################################################ +ifeq ($(CFG_TEE_BENCHMARK),y) +all: benchmark-app +clean: benchmark-app-clean +endif all: rpi3-firmware arm-tf optee-os optee-client xtest u-boot u-boot-jtag-bin\ linux update_rootfs clean: arm-tf-clean busybox-clean u-boot-clean u-boot-jtag-bin-clean \ @@ -237,6 +241,13 @@ helloworld: helloworld-common helloworld-clean: helloworld-clean-common +################################################################################ +# benchmark +################################################################################ +benchmark-app: benchmark-app-common + +benchmark-app-clean: benchmark-app-clean-common + ################################################################################ # Root FS ################################################################################