# HG changeset patch # User Stefan Vogel # Date 1168434980 -3600 # Node ID 40c41965c2b525d3674fbeccd4ade562ce685ec3 # Parent af27a10749c225f8a8fb063ba97e6db9be0b4fa1 add #additional_link_libraries_nt_dot_mak diff -r af27a10749c2 -r 40c41965c2b5 ApplicationDefinition.st --- a/ApplicationDefinition.st Wed Jan 10 14:16:17 2007 +0100 +++ b/ApplicationDefinition.st Wed Jan 10 14:16:20 2007 +0100 @@ -1246,27 +1246,6 @@ "Created: / 15-10-2006 / 12:59:18 / cg" ! -make_dot_proto_mappings - ^ Dictionary new - at: 'TAB' put: ( Character tab asString ); - at: 'TOP' put: ( self pathToTop_unix ); - at: 'LIBRARY_NAME' put: ( self libraryName ); - at: 'SUBDIRECTORIES' put: (self generateSubDirectories); - at: 'LOCAL_INCLUDES' put: (self generateLocalIncludes_unix); - at: 'LOCAL_DEFINES' put: ''; - at: 'HEADEROUTPUTARG' put: (self headerFileOutputArg); - at: 'ADDITIONAL_DEFINITIONS' put: (self additionalDefinitions_make_dot_proto); - at: 'ADDITIONAL_RULES' put: (self additionalRules_make_dot_proto); - at: 'ADDITIONAL_TARGETS' put: (self additionalTargets_make_dot_proto); - at: 'ADDITIONAL_LINK_LIBRARIES' put: (self additionalLinkLibraries_make_dot_proto); - at: 'ADDITIONAL_SHARED_LINK_LIBRARIES' put: (self additionalSharedLinkLibraries_make_dot_proto); - at: 'DEPENDENCIES' put: (self generateDependencies_unix); - yourself - - "Modified: / 09-08-2006 / 16:44:48 / fm" - "Created: / 29-09-2006 / 23:47:21 / cg" -! - modules_dot_c_mappings |d| @@ -1587,5 +1566,5 @@ !ApplicationDefinition class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/ApplicationDefinition.st,v 1.57 2006-12-29 16:25:42 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/ApplicationDefinition.st,v 1.58 2007-01-10 13:16:20 stefan Exp $' ! !