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. 10MODULE := libdrv_frame${TARG}.a 11 12include $(BUILD_CONFIG)/var.mk 13 14flags += -fno-builtin 15flags += -I$(DRVLIB)/common/libdrv_frame/include/ 16flags += -I$(TEELIB)/libtimer/include/ 17flags += -I$(TEELIB)/libdrv/include 18flags += -I$(TEELIB)/libteeos/include/legacy 19flags += -I$(TEELIB)/libteeos/include/tee 20flags += -I$(TEELIB)/libteeos/src/log/ 21flags += -I$(TEELIB)/libteemem/include 22flags += -I$(TEELIB)/libipc_hal/include 23 24flags += -I$(DRIVERS_PATH)/include 25flags += -I$(TEELIB)/libteeconfig/include/ 26flags += -I$(PREBUILD_HEADER)/sys 27 28# Source files required to build the target 29libdrv_frame_c_files := $(wildcard src/*.c) 30 31# Header files/directories this library provides 32EXPORT_HDRS := $(wildcard $(DRVLIB)/common/libdrv_frame/include/*) 33 34include $(BUILD_DRIVER)/drv-common.mk 35