Changeset 3316

Show
Ignore:
Timestamp:
08/26/11 15:28:42
Author:
douglm
Message:

Add targets to clean and build other projects. Can be added as dependencies which might avoid multiple cleans/builds

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build/buildTools/deftasks.xml

    r3290 r3316  
    212212    </sequential> 
    213213  </macrodef> 
    214    
    215   <!-- Standard targets for build files. Two targets need to be overridden by  
    216        the importing task 
     214 
     215  <!-- ================================================================= 
     216       Builds and cleans for projects we might depend on. Add these targets  
     217       as dependencies 
     218       ================================================================= --> 
     219   
     220  <target name="build.bwxml"> 
     221    <execProject project="bwxml" target="build" /> 
     222  </target> 
     223   
     224  <target name="clean.bwxml"> 
     225    <execProject project="bwxml" target="clean" /> 
     226  </target> 
     227   
     228  <!-- ================================================================= 
     229       Standard targets for build files. Two targets (at least) need to be  
     230       overridden by the importing task 
    217231        
    218232       init - carry out project specific initialisation 
    219233       build-source - builds the source to creat ejars. 
    220     --> 
     234       =================================================================--> 
    221235   
    222236  <!-- Override this -->