3 Star 14 Fork 5

Gitee 极速下载 / LinuxBoot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/linuxboot/linuxboot
克隆/下载
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
Shell
1
https://gitee.com/mirrors/LinuxBoot.git
git@gitee.com:mirrors/LinuxBoot.git
mirrors
LinuxBoot
LinuxBoot
main

搜索帮助