summaryrefslogtreecommitdiffstats
path: root/tools/centipede/targets/util.xtarget
blob: 38929ea1c3490ab8b4b5742f0d716ec62674c671 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  <!-- =================================================================== -->
  <!-- Print out warnings for optional components                          -->
  <!-- =================================================================== -->
  <target name="optional-warnings"          
      description="Outputs warnings if some optional jars are missing from the environment">
  </target>
  
  <!-- =================================================================== -->
  <!-- Try other builds that could go into this core build                 -->
  <!-- =================================================================== -->
  <target name="try" 
          depends="init" 
          description="Builds to try before including in main build">
    <ant target="${try.target}" antfile="./tools/targets/try.xml"/>
  </target>

  <!-- =================================================================== -->
  <!-- Fix line endings in src                                             -->
  <!-- =================================================================== -->
  <target name="fixsrclf" depends="init" description="Fix lf in src directory (internal use only!)">
          <fixcrlf srcdir="${java.dir}" includes="**/*.java"       eol="lf"/>
  </target>