语法

条件表达式的语法为:

  1. <conditional-directive>
  2. <text-if-true>
  3. endif

以及:

  1. <conditional-directive>
  2. <text-if-true>
  3. else
  4. <text-if-false>
  5. endif

其中 <conditional-directive> 表示条件关键字,如 ifeq 。这个关键字有四个。

第一个是我们前面所见过的 ifeq

  1. ifeq (<arg1>, <arg2>)
  2. ifeq '<arg1>' '<arg2>'
  3. ifeq "<arg1>" "<arg2>"
  4. ifeq "<arg1>" '<arg2>'
  5. ifeq '<arg1>' "<arg2>"

比较参数 arg1arg2 的值是否相同。当然,参数中我们还可以使用make的函数。如:

  1. ifeq ($(strip $(foo)),)
  2. <text-if-empty>
  3. endif

这个示例中使用了 strip 函数,如果这个函数的返回值是空(Empty),那么<text-if-empty> 就生效。

第二个条件关键字是 ifneq 。语法是:

  1. ifneq (<arg1>, <arg2>)
  2. ifneq '<arg1>' '<arg2>'
  3. ifneq "<arg1>" "<arg2>"
  4. ifneq "<arg1>" '<arg2>'
  5. ifneq '<arg1>' "<arg2>"

其比较参数 arg1arg2 的值是否相同,如果不同,则为真。和 ifeq 类似。

第三个条件关键字是 ifdef 。语法是:

  1. ifdef <variable-name>

如果变量 <variable-name> 的值非空,那到表达式为真。否则,表达式为假。当然,<variable-name> 同样可以是一个函数的返回值。注意, ifdef 只是测试一个变量是否有值,其并不会把变量扩展到当前位置。还是来看两个例子:

示例一:

  1. bar =
  2. foo = $(bar)
  3. ifdef foo
  4. frobozz = yes
  5. else
  6. frobozz = no
  7. endif

示例二:

  1. foo =
  2. ifdef foo
  3. frobozz = yes
  4. else
  5. frobozz = no
  6. endif

第一个例子中, $(frobozz) 值是 yes ,第二个则是 no

第四个条件关键字是 ifndef 。其语法是:

  1. ifndef <variable-name>

这个我就不多说了,和 ifdef 是相反的意思。

<conditional-directive> 这一行上,多余的空格是被允许的,但是不能以 Tab 键作为开始(不然就被认为是命令)。而注释符 # 同样也是安全的。 elseendif也一样,只要不是以 Tab 键开始就行了。

特别注意的是,make是在读取Makefile时就计算条件表达式的值,并根据条件表达式的值来选择语句,所以,你最好不要把自动化变量(如 $@ 等)放入条件表达式中,因为自动化变量是在运行时才有的。

而且为了避免混乱,make不允许把整个条件语句分成两部分放在不同的文件中。