int main (int argc, char *argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
NSLog(@"Hello World!");
[pool drain];
return 0;
}
这是我的计划。我已经在我的朋友iMac上运行了,并且没有任何问题 码。如何制作我在GNUstep上听到过的文件?
答案 0 :(得分:0)
你看过GNUstep Makefile tutorial了吗?还GNUstep make documentation?您应该已经在已安装的软件包中找到common.make
。