梦书之家(移动开发)

你有一个苹果,我有一个苹果,我们交换一下,一人还是一个苹果;你有一个思想,我有一个思想,我们交换一下,一人就有两个思想。 ——肖伯纳

导航

一个简单的Object-C类及其用make编译

tire.h

#import <Cocoa/Cocoa.h>

@interface Tire : NSObject
{
    float pressure;
    float treadDepth;
}

-(void) setPressure: (float) pressure;
-(float) pressure;

-(void) setTreadDepth: (float) treadDepth;
-(float) treadDepth;

@end //Tire

GNUmakefile

include $(GNUSTEP_MAKEFILES)/common.make

TOOL_NAME = Main
Main_OBJC_FILES = tire.m main.m

include $(GNUSTEP_MAKEFILES)/tool.make

 编译:

source /usr/share/GNUstep/Makefiles/GNUstep.sh
make

 http://www.gnustep.org/resources/documentation/Developer/Base/ProgrammingManual/manual_1.html#GNUstep-Base-Library

posted on 2012-12-09 21:27  梦书  阅读(323)  评论(0编辑  收藏  举报