Makefile

  • ?=

?= 指示仅在未设置或没有值时设置 KDIR 变量。

# make test 将会输出 foo

KDIR ?= "foo"
KDIR ?= "bar"

test:
    echo $(KDIR)
2023年12月19日 / 17:13