ProjectDefinition.st
changeset 11829 2d880f341cfc
parent 11789 8d56dc5fa8a8
child 11868 59e160ca3419
equal deleted inserted replaced
11828:b7fc2ba68121 11829:2d880f341cfc
  1477     "Created: / 23-01-2007 / 19:08:27 / cg"
  1477     "Created: / 23-01-2007 / 19:08:27 / cg"
  1478 ! !
  1478 ! !
  1479 
  1479 
  1480 !ProjectDefinition class methodsFor:'description - compilation'!
  1480 !ProjectDefinition class methodsFor:'description - compilation'!
  1481 
  1481 
       
  1482 additionalDefinitions
       
  1483     "allows for additional definitions/rules to be added to the make.proto and bc.mak file."
       
  1484 
       
  1485     ^ ''
       
  1486 !
       
  1487 
  1482 additionalDefinitions_bc_dot_mak
  1488 additionalDefinitions_bc_dot_mak
  1483     "allows for additional definitions/rules to be added to the bc.mak file.
  1489     "allows for additional definitions/rules to be added to the bc.mak file.
  1484      Subclasses may redefine this."
  1490      Subclasses may redefine this."
  1485 
  1491 
  1486     ^ self additionalDefinitions_nt_dot_mak
  1492     ^ self additionalDefinitions_nt_dot_mak
  1489 !
  1495 !
  1490 
  1496 
  1491 additionalDefinitions_make_dot_proto
  1497 additionalDefinitions_make_dot_proto
  1492     "allows for additional definitions/rules to be added to the make.proto file."
  1498     "allows for additional definitions/rules to be added to the make.proto file."
  1493 
  1499 
  1494     ^ ''
  1500     ^ self additionalDefinitions
  1495 
  1501 
  1496     "Created: / 22-08-2006 / 23:53:08 / cg"
  1502     "Created: / 22-08-2006 / 23:53:08 / cg"
  1497 !
  1503 !
  1498 
  1504 
  1499 additionalDefinitions_nt_dot_mak
  1505 additionalDefinitions_nt_dot_mak
  1500     "obsolete - kept for compatibility with old project files"
  1506     "obsolete - kept for compatibility with old project files"
  1501 
  1507 
  1502     ^ ''
  1508     ^ self additionalDefinitions
  1503 
  1509 
  1504     "Created: / 22-08-2006 / 23:59:32 / cg"
  1510     "Created: / 22-08-2006 / 23:59:32 / cg"
  1505 !
  1511 !
  1506 
  1512 
  1507 additionalLinkLibraries_bc_dot_mak
  1513 additionalLinkLibraries_bc_dot_mak
  4184 ! !
  4190 ! !
  4185 
  4191 
  4186 !ProjectDefinition class methodsFor:'documentation'!
  4192 !ProjectDefinition class methodsFor:'documentation'!
  4187 
  4193 
  4188 version
  4194 version
  4189     ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.222 2009-07-01 10:44:03 stefan Exp $'
  4195     ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.223 2009-08-03 12:24:18 stefan Exp $'
  4190 ! !
  4196 ! !
  4191 
  4197 
  4192 ProjectDefinition initialize!
  4198 ProjectDefinition initialize!