Author: techfox9
My first objective-c (objc) with GNUStep program..
Thursday, June 11th, 2009 @ 1:53 am
The setup:
The program “Test1.m” :
#importint 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