Archive for the 'Objective-C' Category

 

My first objective-c (objc) with GNUStep program..

Jun 11, 2009 in Objective-C

The setup:

http://gnustep.org/

The program “Test1.m” :

#import 

int main(void)
{
    NSLog(@"Hello, World!\n");
    return 0;
}

And the “GNUmakefile” :

 
include $(GNUSTEP_MAKEFILES)/common.make

APP_NAME = Test1

Test1_OBJC_FILES = Test1.m
# Test1_RESOURCE_FILES = $(APP_NAME).gorm

include $(GNUSTEP_MAKEFILES)/application.make