Ai
1 Star 0 Fork 0

苏木/u-boot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
show-gnu-make 565 Bytes
一键复制 编辑 原始数据 按行查看 历史
苏木 提交于 2024-11-02 14:10 +08:00 . 更新NXP官方uboot版本(2016.03-->2019.04)
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0+
#
# Show the command name for GNU Make
#
# U-Boot is supposed to be built on various platforms.
# One problem is that the command 'make' is not always GNU Make.
# (For ex. the command name for GNU Make on FreeBSD is usually 'gmake'.)
# It is not a good idea to hard-code the command name in scripts
# where where GNU Make is expected.
# Call this helper script to get the command name for GNU Make.
gnu_make=
for m in make gmake
do
if $m --version 2>/dev/null | grep -q GNU; then
echo $m
exit 0
fi
done
exit 1
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sumumm/u-boot.git
git@gitee.com:sumumm/u-boot.git
sumumm
u-boot
u-boot
master

搜索帮助