Use gnustep make to compile (and install) your programs, it will sort out the paths for you.
Mini tutorial: http://www.gnustep.it/nicola/Tutorials/WritingMakefiles/index.html Documentation: http://www.gnustep.org/resources/documentation/Developer/Make/Manual/make_toc.html In short: write a file short 'GNUmakefile' file like below and then do "make" example GNUmakefile for a 'tool' (i.e. without gui) include $(GNUSTEP_MAKEFILES)/common.make TOOL_NAME = YourToolName YourToolName_OBJC_FILES = source.m include $(GNUSTEP_MAKEFILES)/tool.make for a gui app: include $(GNUSTEP_MAKEFILES)/common.make APP_NAME = YourAppName YourAppName_OBJC_FILES = source.m include $(GNUSTEP_MAKEFILES)/application.make -- - Ingolf Jandt - ______________________________________________________ GRATIS für alle WEB.DE-Nutzer: Die maxdome Movie-FLAT! Jetzt freischalten unter http://movieflat.web.de _______________________________________________ Discuss-gnustep mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnustep
