当前位置: 技术问答>linux和unix
这个Makefile到底错在哪,
来源: 互联网 发布时间:2017-04-26
本文导语: A=a all: if [ $(A) = a ]; then echo 1 fi 报错: [www.cc.com@/home/cc/Box/mak]make if [ a = a ]; then echo 1 fi /bin/sh: -c: line 3: syntax error: unexpected en...
A=a
all:
if [ $(A) = a ]; then
echo 1
fi
报错:
[www.cc.com@/home/cc/Box/mak]make
if [ a = a ]; then
echo 1
fi
/bin/sh: -c: line 3: syntax error: unexpected end of file
make: *** [all] 错误 1
[www.cc.com@/home/cc/Box/mak]
|
在echo 1后面加上;