代码拉取完成,页面将自动刷新
MAKE = make --no-print-directory
Q = @
ROOT_DIR=$(PWD)
export ROOT_DIR
.PHONY : all clean distclean uboot linux kernel app help
all: app uboot linux driver
kernel: linux
app:
$(Q)$(MAKE) station_defconfig -C application
$(Q)$(MAKE) -j12 -C application
uboot:
$(Q)$(MAKE) f1c100s_defconfig -C u-boot-2018.01
$(Q)$(MAKE) -j12 -C u-boot-2018.01
linux:
$(Q)$(MAKE) f1c100s_defconfig -C linux-4.15-rc8
$(Q)$(MAKE) -j12 -C linux-4.15-rc8
driver:
$(Q)$(MAKE) -j12 -C drivers
clean:
$(Q)$(MAKE) clean -C application
$(Q)$(MAKE) clean -C u-boot-2018.01
$(Q)$(MAKE) clean -C linux-4.15-rc8
$(Q)$(MAKE) clean -C drivers
distclean:
$(Q)$(MAKE) distclean -C application
$(Q)$(MAKE) distclean -C u-boot-2018.01
$(Q)$(MAKE) distclean -C linux-4.15-rc8
$(Q)$(MAKE) distclean -C drivers
help:
@echo "make --- build u-boot & linux"
@echo "make all --- build u-boot & linux"
@echo "make uboot --- build u-boot only"
@echo "make linux --- build linux only"
@echo "make kernel --- build linux only"
@echo "make clean --- clean u-boot & linux"
@echo "make distclean --- distclean u-boot & linux"
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。