当前位置:  开发笔记 > 编程语言 > 正文

Makefile-获取传递给make的参数

如何解决《Makefile-获取传递给make的参数》经验,为你挑选了0个好方法。

我有一个像这样的makefile:

.SILENT: #don't echo commands as we run them.

###
# here, set $1 (in the latter bash script) to the first make arg.
# $2 to the second one.
# et cetera.
# ($0 being set properly is optional)
###

foo:
    echo "you passed to make: $1 $2 $3 $4 $5 $6"

所以我可以做:

make foo
You passed to make: foo

(不要告诉任何人,但我正在创建“给我做三明治”的东西)

推荐阅读
夏晶阳--艺术
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有