1 Star 1 Fork 22

moreStrong/HeliosSDK

forked from QuecPython/HeliosSDK 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
compilerules.mk 1.68 KB
一键复制 编辑 原始数据 按行查看 历史
freddy.li 提交于 2021-08-17 18:30 +08:00 . 1 The EC600NCN_LD project is added.
# Copyright (c) Quectel Wireless Solution, Co., Ltd.All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
make_mk_fnc = $(1)/$(notdir $(1)).mk
make_obj_fnc = $(OUTPUT_OBJ_PATH)/$(strip $(1)).o
make_dep_fnc = $(OUTPUT_OBJ_PATH)/$(strip $(1)).d
COMP_MK = $(call make_mk_fnc,$(COMP_PATH))
include $(COMP_MK)
OBJECTS := $(foreach n, $(addprefix $(COMP_PATH)/,$(strip $($(NAME)_SRCS))), $(call make_obj_fnc, $(n)))
DEPENDS := $(foreach n, $(addprefix $(COMP_PATH)/,$(strip $($(NAME)_SRCS))), $(call make_dep_fnc, $(n)))
ARCHIVE := $(OUTPUT_OBJ_PATH)/$(COMP_PATH)/lib$(notdir $(COMP_PATH)).a
$(ARCHIVE): $(OBJECTS)
@echo ----- archiving $@
@-rm -f $@
$(Q)$(AR) -rc $@ $^
$(OBJECTS):$(OUTPUT_OBJ_PATH)/%.o:%
@echo ----- compiling $<
@mkdir -p $(OUTPUT_OBJ_PATH)/$(dir $<)
$(Q)$(CC) -c $< $(foreach i, $(COMP_IFLAGS) $(IFLAGS), -I$(i)) $(foreach d, $(DFLAGS) $(COMP_DFLAGS), -D$(d)) $(CFLAGS) $($(NAME)_CFLAGS) -o $@ -MMD -MF $(OUTPUT_OBJ_PATH)/$<.d.tmp -MP || (rm -f $(ARCHIVE); exit 1)
$(Q)sed -i '/\\:\\/s/\\:\\/:\\/g' $(OUTPUT_OBJ_PATH)/$<.d.tmp
$(Q)mv $(OUTPUT_OBJ_PATH)/$<.d.tmp $(OUTPUT_OBJ_PATH)/$<.d
$(foreach d, $(DEPENDS), $(eval -include $(d)))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/moreStrong/HeliosSDK.git
git@gitee.com:moreStrong/HeliosSDK.git
moreStrong
HeliosSDK
HeliosSDK
master

搜索帮助