aboutsummaryrefslogtreecommitdiff
path: root/lib/ext/cryptocell-312-runtime/utils/src/dmpu_asset_pkg_util/Makefile
blob: b822b2911b56f7276b69d439be94885d7b1d9e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#-------------------------------------------------------------------------------
# Copyright (c) 2001-2019, Arm Limited. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
#-------------------------------------------------------------------------------

SUB_DIRS = oem_key_request icv_key_response oem_asset_package

all: $(foreach sub_dir,$(SUB_DIRS),do_$(sub_dir))

clean: $(foreach sub_dir,$(SUB_DIRS),clean_$(sub_dir))

clean_%:
	@make -C $* clean

do_%:
	@make -C $*

.PHONY: all clean clean_% do_%