私はこのような本当に基本的なプロジェクト(Make)を作成しました:
(ede-proj-project "zrm"
:name "zrm"
:file "Project.ede"
:targets (list
(ede-proj-target-makefile-program "zm"
:name "zrm"
:path ""
:source '("zrm.c")
)
)
)
M-x ede-proj-regenerate RET
and (make -kをコンパイルコマンドとして受け入れる)を実行M-x compile RET RET
すると、makeは**missingseparatorエラーでベイリングを続けます。
私のMakefileをEmacsの外で編集し(非常に邪悪なviで)、スペースをタブに置き換えると、それは機能します。
この作品を作るために私が注意しなければならない特別なことはありますか?
よろしく