我的Makefile.am中有以下构造,我需要移植以在Automake中使用。
.SUFFIXES: .o .c .cpp
现在我尝试使用' automake -a --foreign' ,但这给了我以下错误:
Makefile.am:73: error: use variable 'SUFFIXES', not target '.SUFFIXES'
如果我将Makefile.am更改为:
SUFFIXES: .o .c .cpp
然后automake成功运行,但在运行" make" 时,我得到:
cd . && /bin/bash ./config.status Makefile
config.status: creating Makefile
(CDPATH="${ZSH_VERSION+.}:" && cd . && )
/bin/bash: -c: line 0: syntax error near unexpected token `)'
/bin/bash: -c: line 0: `(CDPATH="${ZSH_VERSION+.}:" && cd . && )'
make: *** [config.h.in] Error 1
知道我哪里出错了吗?任何帮助将不胜感激,因为在线没有太多的帮助。谢谢:))
答案 0 :(得分:0)