rt3 发表于 2020-4-27 17:27:02

执行make报错

本帖最后由 rt3 于 2020-4-27 17:38 编辑

下面这段makefile代码执行时报错
/bin/sh: 1: Syntax error: "then" unexpected
谢谢


am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
    false; \
elif test -n '$(MAKE_HOST)'; then \
    true; \
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
    true; \
else \
    false; \
fi; \
}

main.run:main
        echo $am__is_gnu_make=${am__is_gnu_make}





人造人 发表于 2020-4-27 17:27:03

am__is_gnu_make = ` \
if test -z '$(MAKELEVEL)'; then \
    echo "false"; \
elif test -n '$(MAKE_HOST)'; then \
    echo "true"; \
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
    echo "true"; \
else \
    echo "false"; \
fi; \
`

.PHONY: main
main:
        echo am__is_gnu_make=${am__is_gnu_make}

MIke_python小小 发表于 2020-4-28 08:06:01

这是什么代码

rt3 发表于 2020-4-28 09:15:17

MIke_python小小 发表于 2020-4-28 08:06
这是什么代码

为am__is_gnu_make赋值的 部分 是我从 编译 某个 开源软件生成的 makefile 中 截取下来的。后面几句是我自己写的

MIke_python小小 发表于 2020-4-28 09:17:09

rt3 发表于 2020-4-28 09:15
为am__is_gnu_make赋值的 部分 是我从 编译 某个 开源软件生成的 makefile 中 截取下来的。后面几句是我 ...

我说的是是什么语言

如python

rt3 发表于 2020-4-28 09:18:55

MIke_python小小 发表于 2020-4-28 09:17
我说的是是什么语言

如python

看起来像是 bashshell

MIke_python小小 发表于 2020-4-28 09:20:06

rt3 发表于 2020-4-28 09:18
看起来像是 bashshell

你连什么语言都不知道???

那有什么意义呢

rt3 发表于 2020-4-28 09:23:05

/摊手
页: [1]
查看完整版本: 执行make报错