6 Star 17 Fork 7

Nuclei-Software / nuclei-sdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 2.58 KB
一键复制 编辑 原始数据 按行查看 历史
PROGRAM :=baremetal/helloworld
PARALLEL ?=
.PHONY: __help ctags cleanall buildall tags
__help:
@echo "Help about Build/Run/Debug/Clean Nuclei SDK Application"
@echo "make [PROGRAM=/path/to/app] help Show Build System Help Message"
@echo "make [EXTRA_APP_ROOTDIRS=/path/to/extraapps] cleanall Clean all the applications"
@echo "make [EXTRA_APP_ROOTDIRS=/path/to/extraapps] buildall Rebuild all the applications"
@echo "Examples:"
@echo "make PROGRAM=application/baremetal/helloworld all"
@echo "make PROGRAM=application/baremetal/helloworld SOC=gd32vf103 BOARD=gd32vf103v_rvstar clean all"
@echo "make -k cleanall"
@echo "make -k SOC=gd32vf103 BOARD=gd32vf103v_rvstar cleanall"
@echo "make -k EXTRA_APP_ROOTDIRS=soc_testcases cleanall"
VALID_PROGRAM=$(wildcard $(PROGRAM))
VALID_PROGRAM_MAKEFILE=$(wildcard $(PROGRAM)/Makefile)
# Valid SDK Rules accepted by build system
VALID_SDK_RULES := all info help bin size dasm upload run_openocd run_gdb clean debug showflags showtoolver run_qemu run_xlspike run_qemu_debug run_xlspike_rbb run_xlspike_openocd
# Default root directories to search
APP_ROOTDIRS := application test
# Extra application root directories passed by make
EXTRA_APP_ROOTDIRS ?=
# get all the root directories for applications
TOTAL_ROOTDIRS := $(APP_ROOTDIRS) $(EXTRA_APP_ROOTDIRS)
# Default search patterns
SEARCH_PATTERNS := * */* */*/* */*/*/*
PROGS_TO_SEARCH := $(foreach rootdir, $(TOTAL_ROOTDIRS), $(addprefix $(rootdir)/, $(SEARCH_PATTERNS)))
PROGS_makefile := $(foreach progdir, $(PROGS_TO_SEARCH), $(sort $(dir $(wildcard $(progdir)/makefile))))
PROGS_Makefile := $(foreach progdir, $(PROGS_TO_SEARCH), $(sort $(dir $(wildcard $(progdir)/Makefile))))
PROGS_DIRS := $(sort $(PROGS_makefile) $(PROGS_Makefile))
CLEAN_DIRS_RULES := $(addprefix __CLEAN__, $(PROGS_DIRS))
BUILD_DIRS_RULES := $(addprefix __BUILD__, $(PROGS_DIRS))
ifeq ($(VALID_PROGRAM_MAKEFILE), )
APP_PROGRAM=application/$(PROGRAM)
VALID_PROGRAM=$(wildcard $(APP_PROGRAM))
VALID_PROGRAM_MAKEFILE=$(wildcard $(APP_PROGRAM)/Makefile)
ifeq ($(VALID_PROGRAM_MAKEFILE), )
$(error No valid Makefile in $(PROGRAM) directory! please check!)
endif
endif
cleanall: $(CLEAN_DIRS_RULES)
buildall: $(BUILD_DIRS_RULES)
$(CLEAN_DIRS_RULES):
make -C $(patsubst __CLEAN__%, %, $@) clean
$(BUILD_DIRS_RULES):
make -C $(patsubst __BUILD__%, %, $@) clean
make -C $(patsubst __BUILD__%, %, $@) $(PARALLEL) all
$(VALID_SDK_RULES):
make -C $(VALID_PROGRAM) $@
# Only works in linux
# Exuberant Ctags is required to be installed
tags ctags:
ctags -o tags `find . -name '*.[chS]' -print`
rm -f ctags
ln -sf tags ctags
C
1
https://gitee.com/Nuclei-Software/nuclei-sdk.git
git@gitee.com:Nuclei-Software/nuclei-sdk.git
Nuclei-Software
nuclei-sdk
nuclei-sdk
master

搜索帮助