1 Star 0 Fork 5

chengchaonan/LinuxBoot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile.rules 656 Bytes
一键复制 编辑 原始数据 按行查看 历史
pwd := $(shell pwd)
# Controls how many parallel jobs are invoked in subshells
CPUS := $(shell nproc)
MAKE_JOBS ?= -j$(CPUS) --max-load 16
# Timestamps should be in ISO format
DATE=`date --rfc-3339=seconds`
# Some things want usernames, we use the current checkout
# so that they are reproducible
GIT_HASH := $(shell git rev-parse HEAD)
# Force pipelines to fail if any of the commands in the pipe fail
SHELL := /bin/bash
.SHELLFLAGS := -o pipefail -c
# Disable all built in rules
.SUFFIXES:
FORCE:
# Make helpers to operate on lists of things
define prefix =
$(foreach _, $2, $1$_)
endef
define map =
$(foreach _,$2,$(eval $(call $1,$_)))
endef
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Perl
1
https://gitee.com/chengchaonan/LinuxBoot.git
git@gitee.com:chengchaonan/LinuxBoot.git
chengchaonan
LinuxBoot
LinuxBoot
main

搜索帮助