加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Makefile 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
ChenBlue 提交于 2023-08-22 21:58 . 功能:增加 rtl8188FU 驱动
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"
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化