• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
2#
3# Redistribution and use in source and binary forms, with or without modification,
4# are permitted provided that the following conditions are met:
5#
6# 1. Redistributions of source code must retain the above copyright notice, this list of
7#    conditions and the following disclaimer.
8#
9# 2. Redistributions in binary form must reproduce the above copyright notice, this list
10#    of conditions and the following disclaimer in the documentation and/or other materials
11#    provided with the distribution.
12#
13# 3. Neither the name of the copyright holder nor the names of its contributors may be used
14#    to endorse or promote products derived from this software without specific prior written
15#    permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
19# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
21# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
24# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
27# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29HC_GEN_DIR = $(abspath $(LITEOSTOPDIR)/../../drivers/hdf_core/framework/tools/hc-gen)
30HC_GEN = $(OUT)/hc_gen_build/hc-gen
31HDF_CONFIG_DIR = $(or $(LOCAL_HCS_ROOT),.)
32CONFIG_OUT_DIR = $(OUT)/hcs_generated/$(MODULE_NAME)
33CONFIG_GEN_SRCS = $(addsuffix .c,$(addprefix $(CONFIG_OUT_DIR)/,$(basename $(LOCAL_HCS_SRCS))))
34DEPENDS_CONFIG_SRCS = $(addsuffix .c,$(addprefix $(CONFIG_OUT_DIR)/,$(basename $(LOCAL_DEPENDS_HCS_SRCS))))
35CONFIG_GEN_HEX_SRC = $(addsuffix _hex.c,$(addprefix $(CONFIG_OUT_DIR)/,$(basename $(LOCAL_PLATFORM_HCS_SRC))))
36
37LOCAL_SRCS += $(CONFIG_GEN_SRCS) $(CONFIG_GEN_HEX_SRC)
38LOCAL_INCLUDE += $(dir $(CONFIG_GEN_SRCS) $(DEPENDS_CONFIG_SRCS))
39LOCAL_CFLAGS += $(addprefix -I ,$(LOCAL_INCLUDE))
40
41$(HC_GEN):
42	$(HIDE)make -j -C $(HC_GEN_DIR) BUILD_DIR=$(dir $@)
43
44$(CONFIG_GEN_HEX_SRC): $(CONFIG_OUT_DIR)/%_hex.c: $(HDF_CONFIG_DIR)/%.hcs | $(HC_GEN) $(dir $(CONFIG_GEN_HEX_SRC))
45	$(HIDE)echo gen hdf built-in config
46	$(HIDE)$(HC_GEN) -b -i -a -o $(subst _hex.c,,$(@)) $<
47
48$(CONFIG_GEN_SRCS): $(CONFIG_OUT_DIR)/%.c: $(HDF_CONFIG_DIR)/%.hcs | $(HC_GEN) $(dir $(CONFIG_GEN_SRCS))
49	$(HIDE)echo gen hdf driver config
50	$(HIDE)$(HC_GEN) -t -o $@ $<
51
52$(DEPENDS_CONFIG_SRCS): $(CONFIG_OUT_DIR)/%.c: $(HDF_CONFIG_DIR)/%.hcs | $(HC_GEN) $(dir $(DEPENDS_CONFIG_SRCS))
53	$(HIDE)$(HC_GEN) -t -o $@ $<
54	$(HIDE)rm $@
55
56include $(MODULE)
57