1 Star 0 Fork 4

genokolar/nrf52_keyboard_compile_tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
libftdi1-config 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
Geno [格诺] 提交于 2021-10-05 12:04 . 更新openocd
#!/bin/sh
prefix=/usr
exec_prefix=/usr/bin
exec_prefix_set=no
usage()
{
cat <<EOF
Usage: libftdi1-config [OPTIONS] [LIBRARIES]
Options:
[--prefix[=DIR]]
[--exec-prefix[=DIR]]
[--version]
[--libs]
[--cflags]
EOF
exit $1
}
if test $# -eq 0; then
usage 1 1>&2
fi
while test $# -gt 0; do
case "$1" in
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) optarg= ;;
esac
case $1 in
--prefix=*)
prefix=$optarg
if test $exec_prefix_set = no ; then
exec_prefix=$optarg
fi
;;
--prefix)
echo_prefix=yes
;;
--exec-prefix=*)
exec_prefix=$optarg
exec_prefix_set=yes
;;
--exec-prefix)
echo_exec_prefix=yes
;;
--version)
echo 1.4
exit 0
;;
--cflags)
if test "/usr/include/libftdi1" != /usr/include ; then
includes="-I/usr/include/libftdi1"
fi
echo_cflags=yes
;;
--libs)
echo_libs=yes
;;
*)
usage 1 1>&2
;;
esac
shift
done
if test "$echo_prefix" = "yes"; then
echo $prefix
fi
if test "$echo_exec_prefix" = "yes"; then
echo $exec_prefix
fi
if test "$echo_cflags" = "yes"; then
echo $includes
fi
if test "$echo_libs" = "yes"; then
echo -L/usr/bin -lftdi1
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/genokolar/nrf52_keyboard_compile_tools.git
git@gitee.com:genokolar/nrf52_keyboard_compile_tools.git
genokolar
nrf52_keyboard_compile_tools
nrf52_keyboard_compile_tools
master

搜索帮助