Linux (Ubuntu) 上の Objective-C で hello world を構築しようとしています。main.c
#import <Foundation/Foundation.h>
int main(void)
{
NSLog(@"asdasd");
return 0;
}
ここにエラーはないと思います。次に、Makefile を作成しました。
GNUSTEP_MAKEFILES = /usr/share/GNUstep/Makefiles
include $(GNUSTEP_MAKEFILES)/common.make
TOOL_NAME = main
main_OBJC_FILES = main.m
include $(GNUSTEP_MAKEFILES)/tool.make
そして、「make」を実行します。
This is gnustep-make 2.2.0. Type 'make print-gnustep-make-help' for help.
Making all for tool main...
make[1]: GNUmakefile: no such file or directory
どうすれば修正できますか?