Objective c 生成文件问题。[Ubunt,GNUstep,ObjC,]

Objective c 生成文件问题。[Ubunt,GNUstep,ObjC,],objective-c,ubuntu,makefile,gnustep,Objective C,Ubuntu,Makefile,Gnustep,我刚刚制作了一个带有在线教程的makefile。 一旦我运行makefile,它就会显示 This is gnustep-make 2.4.0. Type 'make print-gnustep-make-help' for help. make[1]: GNUmakefile: No such file or directory make[1]: *** No rule to make target `GNUmakefile'. Stop. make: *** [internal-all]

我刚刚制作了一个带有在线教程的makefile。

一旦我运行makefile,它就会显示

This is gnustep-make 2.4.0. Type 'make print-gnustep-make-help' for help.
make[1]: GNUmakefile: No such file or directory
make[1]: *** No rule to make target `GNUmakefile'.  Stop.
make: *** [internal-all] Error 2
我已经检查了GNUSTEP_MAKEFILES设置。我不知道发生了什么。
有什么想法吗?谢谢

首先确认您将makefile命名为“GNUmakefile”,而不是例如“GNUmakefile”。如果正确,请不要键入
make
,而是尝试
make-n
;Make将报告它打算做什么,而不是尝试做什么。输出可能看起来像胡言乱语,但您可以将其添加到您的问题中(如果不是太长的话),我们将进行查看。

非常感谢。我得到了它。对于GNUStep,我需要将我的makefile命名为GNUmakefile-我知道它有效。万分感谢如果你在阅读了Beta提供的答案后得出这个结论,你应该将他的答案标记为正确。
This is gnustep-make 2.4.0. Type 'make print-gnustep-make-help' for help.
make[1]: GNUmakefile: No such file or directory
make[1]: *** No rule to make target `GNUmakefile'.  Stop.
make: *** [internal-all] Error 2