customize.mk
来自「sm86xx rootfs来源包括补丁( GPL )的」· MK 代码 · 共 26 行
MK
26 行
############################################################### Any custom stuff you feel like doing....##############################################################CUST_DIR:=package/customize/sourcecustom_file_list := $(shell find $(CUST_DIR) -not '(' -type d -name CVS -prune ')' -type f)custom_installed_file_list := $(custom_file_list:$(CUST_DIR)/%=$(TARGET_DIR)/%)$(custom_installed_file_list): $(TARGET_DIR)/%: $(CUST_DIR)/% FORCE @if [ ! -d $(@D) ]; then echo mkdir -p $(@D); mkdir -p $(@D); fi cp -df --preserve=mode --preserve=ownership $< $@customize: $(custom_installed_file_list)############################################################### Toplevel Makefile options##############################################################ifeq ($(strip $(BR2_PACKAGE_CUSTOMIZE)),y)TARGETS+=customizeendif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?