From 99af84e4473652b54529d91b46832dd0ebccce85 Mon Sep 17 00:00:00 2001 From: Jerome Forissier Date: Wed, 16 Aug 2017 18:11:55 +0200 Subject: [PATCH] Add target ta_dev_kit Adds support for `make ta_dev_kit`, to build the user space libraries only and copy them (as well as the related header files and make files) to the export directory. Signed-off-by: Jerome Forissier --- ta/ta.mk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ta/ta.mk b/ta/ta.mk index caceefda3aa..23e5feb1c9b 100644 --- a/ta/ta.mk +++ b/ta/ta.mk @@ -68,7 +68,7 @@ $2/$$(notdir $1): $1 cp $$< $$@ cleanfiles += $2/$$(notdir $1) -all: $2/$$(notdir $1) +ta_dev_kit: $2/$$(notdir $1) endef # Copy the .a files @@ -128,4 +128,6 @@ endef $(eval $(mk-file-export)) cleanfiles := $(cleanfiles) $(conf-mk-file-export) -all: $(conf-mk-file-export) +ta_dev_kit: $(conf-mk-file-export) + +all: ta_dev_kit