1# Copyright (C) 2022 Huawei Technologies Co., Ltd. 2# Licensed under the Mulan PSL v2. 3# You can use this software according to the terms and conditions of the Mulan PSL v2. 4# You may obtain a copy of Mulan PSL v2 at: 5# http://license.coscl.org.cn/MulanPSL2 6# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR 7# IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR 8# PURPOSE. 9# See the Mulan PSL v2 for more details. 10 11# MODULE 12MODULE := libdynconfbuilder${TARG}.a 13 14ifeq ($(CONFIG_DYN_CONF), true) 15flags += -DTEE_SUPPORT_DYN_CONF 16endif 17 18inc-flags += -I$(SYSLIB)/libdynconfbuilder/include 19inc-flags += -I$(SYSLIB)/libdynconfmgr/include 20inc-flags += -I$(FRAMEWORK_PATH)/drvmgr/src 21inc-flags += -I$(DRIVERS_PATH)/include 22inc-flags += -I$(SYSLIB)/libspawn_common/include 23inc-flags += -I$(TEELIB)/libdrv/include 24inc-flags += -I$(TEELIB)/libteeos/include/tee 25inc-flags += -I$(TEELIB)/libteeos/include/legacy 26inc-flags += -I$(TEELIB)/libteeconfig/include 27inc-flags += -I$(TEELIB)/libteemem/include 28 29# Source files required to build the target 30libdynconfbuilder_c_files += $(wildcard src/*.c) 31 32include $(BUILD_LIB)/lib-common.mk 33