ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/build.xml
(Generate patch)

Comparing jsr166/build.xml (file contents):
Revision 1.63 by tim, Sat Dec 13 20:45:41 2003 UTC vs.
Revision 1.75 by jsr166, Tue Sep 18 12:46:40 2007 UTC

# Line 30 | Line 30
30    <property name="build.dir"            location="build"/>
31    <property name="build.classes.dir"    location="${build.dir}/classes"/>
32    <property name="build.testcases.dir"  location="${build.dir}/testcases"/>
33 +  <property name="build.loops.dir"      location="${build.dir}/loops"/>
34    <property name="build.lib.dir"        location="${build.dir}/lib"/>
34  <property name="build.ant.dir"        location="${build.dir}/ant"/>
35    <property name="build.javadocs.dir"   location="${build.dir}/javadocs"/>
36    <property name="build.reports.dir"    location="${build.dir}/reports"/>
37 <  <property name="build.checkstyle.dir" location="${build.dir}/checkstyle"/>
38 <  <property name="build.doccheck.dir"   location="${build.dir}/doccheck"/>
39 <  <property name="build.filter.src.dir" location="${build.dir}/filtersrc"/>
40 <  <property name="build.dc-filter.dir"  location="${build.dir}/filterdocchk"/>
37 >  <property name="build.jsr166x.dir"    location="${build.dir}/jsr166x"/>
38 >  <property name="build.jsr166xlib.dir"        location="${build.dir}/jsr166xlib"/>
39 >  <property name="build.jsr166xjavadocs.dir"   location="${build.dir}/jsr166xjavadocs"/>
40 >
41 >  <property name="build.jsr166y.dir"    location="${build.dir}/jsr166y"/>
42 >  <property name="build.jsr166ylib.dir"        location="${build.dir}/jsr166ylib"/>
43 >  <property name="build.jsr166yjavadocs.dir"   location="${build.dir}/jsr166yjavadocs"/>
44  
45    <!-- Source locations -->
46    <property name="src.dir"              location="${basedir}/src/main"/>
47    <property name="test.src.dir"         location="${basedir}/src/test"/>
48 +  <property name="loops.src.dir"        location="${basedir}/src/loops"/>
49    <property name="tck.src.dir"          location="${test.src.dir}/tck"/>
50    <property name="jtreg.src.dir"        location="${test.src.dir}/jtreg"/>
47  <property name="ant.src.dir"          location="${basedir}/etc/ant"/>
48  <property name="stylesheet.dir"       location="${basedir}/etc/xsl"/>
51    <property name="lib.dir"              location="${basedir}/lib"/>
52    <property name="dist.dir"             location="${basedir}/dist"/>
53 +  <property name="topsrc.dir"           location="${basedir}/src"/>
54 +  <property name="jsr166xsrc.dir"       location="${basedir}/src/jsr166x"/>
55 +  <property name="jsr166ysrc.dir"       location="${basedir}/src/jsr166y"/>
56  
57    <!-- Distribution locations -->
58    <property name="dist.javadocs.dir"    location="${dist.dir}/docs"/>
59 +  <property name="dist.jsr166xjavadocs.dir"    location="${dist.dir}/jsr166xdocs"/>
60 +  <property name="dist.jsr166yjavadocs.dir"    location="${dist.dir}/jsr166ydocs"/>
61  
62    <!-- Jar locations -->
63    <property name="product.jar"          location="${build.lib.dir}/jsr166.jar"/>
64 +  <property name="jsr166xproduct.jar"   location="${build.jsr166xlib.dir}/jsr166x.jar"/>
65 +  <property name="jsr166yproduct.jar"   location="${build.jsr166ylib.dir}/jsr166y.jar"/>
66    <property name="junit.jar"            location="${lib.dir}/junit.jar"/>
67 <  
67 >
68    <!-- Bootclasspath argument -->
69    <property name="bootclasspath.args"   value="-Xbootclasspath/p:${product.jar}"/>
70  
# Line 65 | Line 74
74      <pathelement location="${junit.jar}"/>
75    </path>
76  
77 +  <!-- ALoops classpath -->
78 +  <path id="loops.classpath">
79 +    <pathelement location="${build.loops.dir}"/>
80 +  </path>
81 +
82  
83    <!-- Main targets -->
84  
# Line 83 | Line 97
97             source="${build.sourcelevel}"
98               fork="true">
99  
100 +      <include name="**/*.java"/>
101 +      <compilerarg value="-XDignore.symbol.file"/>
102 +
103 + <!--
104 +      <exclude name="java/lang/**"/>
105        <compilerarg line="${build.args}"/>
106 +      <compilerarg line="-Xlint -Xmaxwarns 1000"/>
107 + -->
108  
109      </javac>
110  
# Line 118 | Line 139
139      <mkdir dir="${build.javadocs.dir}"/>
140  
141      <javadoc destdir="${build.javadocs.dir}"
142 <                link="http://java.sun.com/j2se/1.4.1/docs/api"
142 >                link="http://java.sun.com/javase/6/docs/api/"
143              overview="${src.dir}/intro.html"
144 <              source="${build.sourcelevel}">
145 <
125 <      <tag name="revised" description="Last revised:"/>
126 <      <tag name="spec"    description="Specified by:"/>
144 >            sourcepath="${src.dir}:/home/dl/1.6.0/j2se/martin/j2se/src/share/classes"
145 >    >          
146  
147        <packageset dir="${src.dir}"/>
148  
# Line 133 | Line 152
152  
153  
154  
136  <target name="doccheck"
137          depends="filter-doccheck"
138          description="Reports on javadoc style errors">
139
140    <delete dir="${build.doccheck.dir}"/>
141    <mkdir dir="${build.doccheck.dir}"/>
142
143    <javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck"
144         docletpath="${lib.dir}/doccheck.jar"
145            destdir="${build.doccheck.dir}">
146      <packageset dir="${build.dc-filter.dir}"/>
147    </javadoc>
148
149    <echo>DocCheck output is in ${build.doccheck.dir}</echo>
150
151  </target>
152
153
154
155  <target name="checkstyle"
156          depends="filter-src"
157          description="Reports on style errors in Java source (verbose, mostly chaff)">
158
159    <taskdef resource="checkstyletask.properties"
160            classpath="${lib.dir}/checkstyle-all-3.1.jar"/>
161
162    <mkdir dir="${build.checkstyle.dir}"/>
163    
164    <checkstyle config="etc/checkstyle/sun_checks.xml"
165       failOnViolation="false">
166      <formatter type="xml" toFile="${build.checkstyle.dir}/checkstyle-report.xml"/>
167      <fileset dir="${build.filter.src.dir}" includes="**/*.java"/>
168    </checkstyle>
169    
170    <style in="${build.checkstyle.dir}/checkstyle-report.xml"
171          out="${build.checkstyle.dir}/checkstyle-report.html"
172        style="${stylesheet.dir}/checkstyle-frames.xsl"/>
173
174  </target>
175
176  
177
155    <target name="dist"
156            depends="init, dist-clean, dist-jar, dist-docs"
157            description="Puts all distributable products in single hierarchy"/>
# Line 228 | Line 205
205      <mkdir dir="${dist.javadocs.dir}"/>
206  
207      <javadoc destdir="${dist.javadocs.dir}"
208 <                link="http://java.sun.com/j2se/1.4.2/docs/api"
208 >            link="http://java.sun.com/javase/6/docs/api/"
209              overview="${src.dir}/intro.html"
233              source="${build.sourcelevel}">
234
235      <packageset dir="${src.dir}"/>
210  
211 +            sourcepath="${src.dir}:/home/dl/1.6.0/j2se/martin/j2se/src/share/classes"
212 +     >
213 + <!--
214 +      <packageset dir="${src.dir}" defaultexcludes="yes">
215 +      <include name="java/util/concurrent"/>
216 +      <include name="java/util/concurrent/atomic"/>
217 +      <include name="java/util/concurrent/locks"/>
218 +      </packageset>
219 + -->
220 +      <fileset dir="${topsrc.dir}" defaultexcludes="yes">
221 +      <include name="main/java/util/concurrent/*.java"/>
222 +      <include name="main/java/util/concurrent/atomic/*.java"/>
223 +      <include name="main/java/util/concurrent/locks/*.java"/>
224 +      <include name="main/java/util/*.java"/>
225 + <!--
226 +      <include name="main/java/util/concurrent/*.html"/>
227 +      <include name="main/java/util/concurrent/atomic/*.html"/>
228 +      <include name="main/java/util/concurrent/locks/*.html"/>
229 +      <include name="main/java/util/*.html"/>
230 + -->
231 + <!--      <include name="jsr166x/*.java"/> -->
232 +      </fileset>
233      </javadoc>
234  
235    </target>
# Line 251 | Line 247
247      <echo>java.home is ${java.home}</echo>
248  
249    </target>
250 <  
251 <  
250 >
251 >
252    <target name="dist-jar"
253            depends="clean, jar">
254  
# Line 261 | Line 257
257    </target>
258  
259  
264  <target name="compile-ant-filter"
265          depends="init">
266
267    <mkdir dir="${build.ant.dir}"/>
268
269    <javac srcdir="${ant.src.dir}"
270          destdir="${build.ant.dir}"
271           source="1.4"
272    />
273
274  </target>
275
276
277  <target name="filter-src"
278          depends="compile-ant-filter">
279
280    <mkdir dir="${build.filter.src.dir}"/>
281
282    <copy todir="${build.filter.src.dir}">
283      <fileset dir="${src.dir}">
284        <include name="**/*.html"/>
285      </fileset>
286    </copy>
287
288    <copy todir="${build.filter.src.dir}">
289      <fileset dir="${src.dir}">
290        <exclude name="**/*.html"/>
291        <!-- Files excluded from dist-docs -->
292        <exclude name="java/util/Random.*"/>
293        <exclude name="sun/misc/Unsafe.*"/>
294      </fileset>
295      <!--
296      <filterchain>
297      -->
298
299        <!--
300         # This filter gets rid of angle-bracketed type parameters
301         # so that javadoc can run on the result. The following
302         # heuristic seems to work:
303         #
304         # For all lines not starting with space(s)-asterisk-space(s),
305         #   replace <something> with a space, where there may be more
306         #   than one right angle bracket at the end, and "something"
307         #   must not contain parens or pipes. (This may need some
308         #   tweaking.)
309         -->
310
311        <!--
312        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
313                      classpath="${build.ant.dir}">
314          <param name="notmatching" value="^\s+\*\s.*$"/>
315          <param name="pattern"     value="&lt;[^|>()]+?>+"/>
316          <param name="replacement" value=" "/>
317        </filterreader>
318        -->
319
320      <!--
321      </filterchain>
322      -->
323    </copy>
324
325  </target>
326
327
328  <target name="filter-doccheck"
329          depends="filter-src">
330
331    <mkdir dir="${build.dc-filter.dir}"/>
332
333    <copy todir="${build.dc-filter.dir}">
334      <fileset dir="${build.filter.src.dir}">
335        <include name="**/*.html"/>
336      </fileset>
337    </copy>
338
339    <property name="generic.declarations"
340             value="/** Fake type parameter. */ public interface E {} /** Fake type parameter. */ public interface T {} /** Fake type parameter. */ public interface K {} /** Fake type parameter. */ public interface V {}"
341    />
342
343    <copy todir="${build.dc-filter.dir}">
344      <fileset dir="${build.filter.src.dir}">
345        <exclude name="**/*.html"/>
346      </fileset>
347      <filterchain>
348        <!--
349         # These two filters try to make the source look like
350         # something that doccheck can process. The first removes
351         # -source 1.4 assertions and the second adds in a bunch
352         # of single letter public nested marker interfaces so that
353         # the generic type parameters are recognized.
354         -->
355
356        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
357                      classpath="${build.ant.dir}">
358          <param name="matching"    value="^\s*assert[\s ].*$"/>
359          <param name="pattern"     value="assert"/>
360          <param name="replacement" value="//assert"/>
361        </filterreader>
362
363        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
364                      classpath="${build.ant.dir}">
365          <param name="matching"    value="^([^*]*(class|interface|implements) .*|)\{.*$"/>
366          <param name="pattern"     value="$"/>
367          <param name="replacement" value=" ${generic.declarations}"/>
368        </filterreader>
369
370      </filterchain>
371    </copy>
372
373  </target>
374
375
260    <target name="compile-tests"
261            depends="jar">
262  
# Line 388 | Line 272
272  
273        <compilerarg value="${bootclasspath.args}"/>
274        <compilerarg line="${build.args}"/>
275 <      
275 >
276        <classpath refid="test.classpath"/>
277  
278      </javac>
# Line 402 | Line 286
286               fork="true">
287  
288        <include name="jsr166/test/**"/>
289 <      
289 >
290        <compilerarg value="${bootclasspath.args}"/>
291        <compilerarg line="${build.args}"/>
292 <      
292 >
293        <classpath refid="test.classpath"/>
294  
295      </javac>
# Line 421 | Line 305
305  
306        <compilerarg value="${bootclasspath.args}"/>
307        <compilerarg line="${build.args}"/>
308 <      
308 >
309        <classpath refid="test.classpath"/>
310  
311      </javac>
# Line 446 | Line 330
330                     fork="true">
331  
332        <jvmarg value="${bootclasspath.args}"/>
333 <      
333 >      <jvmarg value="-server"/>
334 >      <jvmarg value="-showversion"/>
335 >
336        <classpath refid="test.classpath"/>
337  
338        <formatter type="xml"/>
# Line 456 | Line 342
342            <include name="**/${testcase}Test.java"/>
343          </fileset>
344        </batchtest>
345 <      
345 >
346        <batchtest todir="${build.reports.dir}" if="do.test.old">
347          <fileset dir="${test.src.dir}">
348            <include name="jsr166/test/**/${testcase}Test.java"/>
349          </fileset>
350        </batchtest>
351  
352 < <!--      
352 > <!--
353        <batchtest todir="${build.reports.dir}" if="do.test.jtreg">
354          <fileset dir="${jtreg.src.dir}">
355            <include name="**/${testcase}Test.java"/>
# Line 491 | Line 377
377        <fileset dir="${build.reports.dir}">
378          <include name="TEST-*.xml"/>
379        </fileset>
380 <      <report styledir="${stylesheet.dir}"
495 <                format="${junit.report.format}"
496 <                 todir="${build.reports.dir}"
380 >      <report format="${junit.report.format}" todir="${build.reports.dir}"
381        />
382      </junitreport>
383  
# Line 530 | Line 414
414      <available property="xalan.available"
415                 classname="org.apache.xalan.Version"/>
416  
417 <              
417 >
418      <!-- Ant 1.6beta and later don't need or want this check -->
419 <    <!--    
419 >    <!--
420      <fail message="Need JUnit 3.8.1 in ${ant.home}${file.separator}lib to run tests"
421            unless="junit.available"/>
422  
# Line 543 | Line 427
427    </target>
428  
429  
430 +  <!-- Various demos and test programs -->
431  
547  <!-- Anthill targets -->
548
549  <target name="anthill-build">
550  
551    <!-- Override this in user.properties -->
552    <property name="tiger.home" location="e:/j2sdk1.5.0"/>
553    
554    <exec resultproperty="result.property" dir="${basedir}" executable="${tiger.home}/bin/java">
555      <arg value="-Xmx256000000"/>
556      <!-- classpath of new JVM -->
557      <arg value="-classpath"/> <arg path="${java.class.path}"/>
558      <!-- location of Ant home directory -->
559      <arg value="-Dant.home=${ant.home}"/>
560      <!-- the Ant main class -->
561      <arg value="org.apache.tools.ant.Main"/>
562      <!-- The build file -->
563      <arg value="-buildfile"/>  <arg value="build.xml"/>
564      <!-- the target to build on the new Ant instance -->
565      <arg value="-DJAVA_HOME=${tiger.home}"/>
566      <arg value="do-anthill-build"/>
567    </exec>
568  </target>
569  
570  <target name="do-anthill-build"
571          depends="jar, test, docs, dist-docs"/>
572
573  <target name="anthill-publish">
574
575    <copy todir="${deployDir}/docs/private">
576      <fileset dir="${build.javadocs.dir}"/>
577    </copy>
578
579    <copy todir="${deployDir}/docs/public">
580      <fileset dir="${dist.javadocs.dir}"/>
581    </copy>
582
583    <copy tofile="${deployDir}/index.html"
584          file="${basedir}/etc/anthill-index.html"/>
585
586    <copy todir="${deployDir}/notes">
587      <fileset dir="${basedir}/etc/notes"/>
588    </copy>
432  
433 <  </target>
433 >  <target name="loops" depends="init, configure-compiler"
434 >          description="Benchmark from Doug Lea's AQS paper">
435  
436 +    <mkdir dir="${build.loops.dir}"/>
437  
438 <  <!-- Standalone sample program -->
439 <  
595 <  <target name="sample" depends="jar">
596 <  
597 <    <mkdir dir="${build.testcases.dir}"/>
598 <    
599 <    <javac srcdir="${test.src.dir}"
600 <          destdir="${build.testcases.dir}"
438 >    <javac srcdir="${loops.src.dir}"
439 >          destdir="${build.loops.dir}"
440              debug="${build.debug}"
441         debuglevel="${build.debuglevel}"
442        deprecation="${build.deprecation}"
443             source="${build.sourcelevel}"
444               fork="true">
445 <            
607 <      <compilerarg value="${bootclasspath.args}"/>
445 >
446        <compilerarg line="${build.args}"/>
447 <      
448 <      <classpath refid="test.classpath"/>
611 <      
612 <      <include name="jsr166/test/Sample.java"/>
613 <      
447 >      <classpath refid="loops.classpath"/>
448 >
449      </javac>
450 <    
451 <            
452 <    <java classname="jsr166.test.Sample" fork="true">
618 <      <jvmarg value="${bootclasspath.args}"/>
619 <      <classpath refid="test.classpath"/>
450 >
451 >    <java classname="ALoops" fork="true">
452 >      <classpath refid="loops.classpath"/>
453      </java>
621  </target>
454  
623  
624  
625  <!-- C++ and JNI definitions and demos -->
626  
627  <target name="configure-cpp">
628
629    <!-- Define tasks and types -->
630    
631    <path id="cpptasks.path">
632      <pathelement location="${lib.dir}/cpptasks.jar"/>
633    </path>
634    <taskdef resource="cpptasks.tasks" classpathref="cpptasks.path"/>
635    <typedef resource="cpptasks.types" classpathref="cpptasks.path"/>
636    
637    <!-- Set platform property for JNI includes -->
638    
639    <condition property="platform" value="linux">
640      <os name="Linux"/>
641    </condition>
642    <condition property="platform" value="win32">
643      <os family="windows"/>
644    </condition>
645    <condition property="platform" value="solaris">
646      <os name="SunOS"/>
647    </condition>
648    
455    </target>
456 <  
457 <  
458 <  <target name="cppdemo" depends="configure-cpp">
459 <  
460 <    <mkdir dir="${build.dir}"/>
461 <    
462 <    <cc multithreaded="true"
463 <                 name="g++"
464 <               objdir="${build.dir}"
465 <              outfile="${build.dir}/CppDemo">
466 <      <fileset dir="${test.src.dir}" includes="CppDemo.cpp"/>
467 <      <libset libs="stdc++"/>
468 <    </cc>
663 <    
664 <    <exec executable="${build.dir}/CppDemo">
665 <      <arg line="count in word frequency of word in command line count"/>
666 <    </exec>
667 <    
668 <  </target>
669 <  
670 <  
671 <  <target name="jnidemo" depends="init, configure-compiler, configure-cpp">
672 <  
673 <    <mkdir dir="${build.testcases.dir}"/>
674 <    
675 <    <javac srcdir="${test.src.dir}"
676 <          destdir="${build.testcases.dir}"
456 >
457 >
458 >  <!-- jsr166x -->
459 >
460 >
461 >  <target name="jsr166xcompile"
462 >          depends="init, configure-compiler"
463 >          description="Compiles jsr166x sources">
464 >
465 >    <mkdir dir="${build.jsr166x.dir}"/>
466 >
467 >    <javac srcdir="${jsr166xsrc.dir}"
468 >          destdir="${build.jsr166x.dir}"
469              debug="${build.debug}"
470         debuglevel="${build.debuglevel}"
471        deprecation="${build.deprecation}"
472             source="${build.sourcelevel}"
473               fork="true">
474 <      <compilerarg value="${bootclasspath.args}"/>
474 >
475 >      <include name="**/*.java"/>
476        <compilerarg line="${build.args}"/>
477 <      <classpath refid="test.classpath"/>
685 <      <include name="JniDemo.java"/>
477 >
478      </javac>
479 <    
480 <    <javah destdir="${build.testcases.dir}"
481 <      classpathref="test.classpath">
482 <      <class name="JniDemo"/>
483 <    </javah>
484 <    
485 <    <cc multithreaded="true"
486 <                 name="g++"
487 <               objdir="${build.dir}"
488 <              outfile="${build.dir}/JniDemo"
489 <              outtype="shared">
490 <              
491 <      <compiler>
492 <        <defineset>
493 <          <define name="__int64" value="long long"/>
494 <        </defineset>
495 <        <includepath location="${java.home}/../include"/>
496 <        <includepath location="${java.home}/../include/${platform}"/>
497 <        <compilerarg value="-mno-cygwin"/>
498 <      </compiler>
499 <      
500 <      <linker>
501 <        <linkerarg value="--add-stdcall-alias"/>
502 <      </linker>
503 <      
504 <      <includepath location="${build.testcases.dir}"/>
505 <      
506 <      <fileset dir="${test.src.dir}" includes="JniDemo.cpp"/>
507 <      
508 <      <libset libs="stdc++"/>
509 <      
510 <    </cc>
511 <    
512 <    <!-- Necessary if windows, harmless if not -->
513 <    <copy file="${build.dir}/libJniDemo.so" tofile="${build.dir}/JniDemo.dll"/>
514 <    
515 <    <java classname="JniDemo" fork="true">
516 <      <!-- Watch out: path separator hardwired to semicolon here! -->
517 <      <sysproperty key="java.library.path" path="${java.library.path};${build.dir}"/>
518 <      <classpath refid="test.classpath"/>
519 <    </java>
520 <    
479 >
480 >  </target>
481 >
482 >
483 >
484 >  <target name="jsr166xjar"
485 >          depends="jsr166xcompile"
486 >          description="Builds library jar from compiled sources">
487 >
488 >    <mkdir dir="${build.jsr166xlib.dir}"/>
489 >
490 >    <jar destfile="${jsr166xproduct.jar}">
491 >      <fileset dir="${build.jsr166x.dir}"/>
492 >    </jar>
493 >
494 >  </target>
495 >
496 >
497 >
498 >  <target name="jsr166xdocs"
499 >          description="Builds javadocs with custom tags to build folder">
500 >
501 >    <delete dir="${build.jsr166xjavadocs.dir}"/>
502 >    <mkdir dir="${build.jsr166xjavadocs.dir}"/>
503 >
504 >    <javadoc destdir="${build.jsr166xjavadocs.dir}"
505 >             link="http://java.sun.com/javase/6/docs/api/"
506 >
507 >            sourcepath="${jsr166xsrc.dir}:/home/dl/1.5.0/j2se/martin/j2se/src/share/classes"
508 >
509 >    >
510 >      <packageset dir="${topsrc.dir}" defaultexcludes="yes">
511 >      <include name="jsr166x"/>
512 >      </packageset>
513 >
514 >
515 >    </javadoc>
516 >
517 >  </target>
518 >
519 >
520 >  <target name="jsr166xdist"
521 >          depends="jsr166xdist-clean, jsr166xdist-jar, jsr166xdist-docs"
522 >          description="Puts all distributable products in single hierarchy"/>
523 >
524 >
525 >
526 >  <target name="jsr166xclean"
527 >          description="Removes all build products">
528 >
529 >    <delete dir="${build.jsr166x.dir}"/>
530 >    <delete dir="${build.jsr166xlib.dir}"/>
531 >
532    </target>
533  
534  
535  
536 <  <!-- Backward compatibility, work in progress (some files not checked in) -->
536 >  <target name="jsr166xdist-clean"
537 >          description="Removes all build and distribution products">
538 >
539 >  </target>
540 >
541  
542  
543 +  <target name="jsr166xdist-docs"
544 +          description="Builds javadocs without custom tags to dist folder">
545 +
546 +    <delete dir="${dist.jsr166xjavadocs.dir}"/>
547 +    <mkdir dir="${dist.jsr166xjavadocs.dir}"/>
548 +
549 +    <javadoc destdir="${dist.jsr166xjavadocs.dir}"
550 +                link="http://java.sun.com/javase/6/docs/api/"
551 +              source="${build.sourcelevel}">
552 +
553 +      <packageset dir="${topsrc.dir}" defaultexcludes="yes">
554 +      <include name="jsr166x"/>
555 +      </packageset>
556 +
557 +    </javadoc>
558 +
559 +  </target>
560 +
561 +  <target name="jsr166xdist-jar"
562 +          depends="jsr166xclean, jsr166xjar">
563 +
564 +    <copy file="${jsr166xproduct.jar}" todir="${dist.dir}"/>
565  
737  <property name="pretiger.src.dir"     location="${build.dir}/pretiger/src"/>
738  <property name="build.pretiger.dir"   location="${build.dir}/pretiger/classes"/>
739  <property name="pretiger.jar"         location="${build.lib.dir}/jsr166-pretiger.jar"/>
740  <property name="pretiger.sourcelevel" value="1.4"/>
741  
742  <target name="defang"
743       depends="init"
744   description="Generates pre-Tiger compatible source">
745  
746    <delete dir="${pretiger.src.dir}"/>
747    <mkdir dir="${pretiger.src.dir}"/>
748  
749    <exec executable="perl">
750      <arg file="etc/defang.pl"/>
751      <!-- <arg value="-v"/> -->
752      <arg value="-s"/> <arg file="${src.dir}"/>
753      <arg value="-t"/> <arg file="${pretiger.src.dir}"/>
754    </exec>
755    
566    </target>
567  
568 <  <target name="compile-pretiger"
569 <          depends="init, configure-compiler, defang"
760 <          description="Compiles pre-Tiger sources to build folder">
568 >  <!-- jsr166y -->
569 >
570  
571 <    <mkdir dir="${build.pretiger.dir}"/>
571 >  <target name="jsr166ycompile"
572 >          depends="init, configure-compiler"
573 >          description="Compiles jsr166y sources">
574 >
575 >    <mkdir dir="${build.jsr166y.dir}"/>
576  
577 <    <javac srcdir="${pretiger.src.dir}"
578 <          destdir="${build.pretiger.dir}"
577 >    <javac srcdir="${jsr166ysrc.dir}"
578 >          destdir="${build.jsr166y.dir}"
579              debug="${build.debug}"
580         debuglevel="${build.debuglevel}"
581        deprecation="${build.deprecation}"
582 <           source="${pretiger.sourcelevel}"
582 >           source="${build.sourcelevel}"
583               fork="true">
584  
585 +      <include name="**/*.java"/>
586        <compilerarg line="${build.args}"/>
587 <      <exclude name="**/Thread.java"/>
587 >      <compilerarg value="${bootclasspath.args}"/>
588 >
589 > <!--       <compilerarg line="-Xlint -Xmaxwarns 1000"/> -->
590  
591      </javac>
592  
593    </target>
778  
779  <target name="pretiger" depends="compile-pretiger">
594  
595 <    <mkdir dir="${build.lib.dir}"/>
596 <    
597 <    <jar destfile="${pretiger.jar}">
598 <      <fileset dir="${build.pretiger.dir}">
599 <      </fileset>
595 >
596 >
597 >  <target name="jsr166yjar"
598 >          depends="jsr166ycompile"
599 >          description="Builds library jar from compiled sources">
600 >
601 >    <mkdir dir="${build.jsr166ylib.dir}"/>
602 >
603 >    <jar destfile="${jsr166yproduct.jar}">
604 >      <fileset dir="${build.jsr166y.dir}"/>
605      </jar>
606 <    
606 >
607 >  </target>
608 >
609 >
610 >
611 >  <target name="jsr166ydocs"
612 >          description="Builds javadocs with custom tags to build folder">
613 >
614 >    <delete dir="${build.jsr166yjavadocs.dir}"/>
615 >    <mkdir dir="${build.jsr166yjavadocs.dir}"/>
616 >
617 >    <javadoc destdir="${build.jsr166yjavadocs.dir}"
618 >                link="http://java.sun.com/javase/6/docs/api/"
619 >            sourcepath="${jsr166ysrc.dir}:/home/dl/1.5.0/j2se/martin/j2se/src/share/classes"
620 >
621 >    >
622 >      <packageset dir="${topsrc.dir}" defaultexcludes="no">
623 >      <include name="jsr166y"/>
624 >      </packageset>
625 >
626 >
627 >    </javadoc>
628 >
629 >  </target>
630 >
631 >
632 >  <target name="jsr166ydist"
633 >          depends="jsr166ydist-clean, jsr166ydist-jar, jsr166ydist-docs"
634 >          description="Puts all distributable products in single hierarchy"/>
635 >
636 >
637 >
638 >  <target name="jsr166yclean"
639 >          description="Removes all build products">
640 >
641 >    <delete dir="${build.jsr166y.dir}"/>
642 >    <delete dir="${build.jsr166ylib.dir}"/>
643 >
644 >  </target>
645 >
646 >
647 >
648 >  <target name="jsr166ydist-clean"
649 >          description="Removes all build and distribution products">
650 >
651 >  </target>
652 >
653 >  <target name="jsr166ydist-docs"
654 >          description="Builds javadocs without custom tags to dist folder">
655 >
656 >    <delete dir="${dist.jsr166yjavadocs.dir}"/>
657 >    <mkdir dir="${dist.jsr166yjavadocs.dir}"/>
658 >
659 >    <javadoc destdir="${dist.jsr166yjavadocs.dir}"
660 >                link="http://java.sun.com/javase/6/docs/api/"
661 >              source="${build.sourcelevel}">
662 >      <fileset dir="${topsrc.dir}" defaultexcludes="yes">
663 >      <include name="jsr166y/*.java"/>
664 >      <include name="jsr166y/forkjoin/*.java"/>
665 >            </fileset>
666 >    </javadoc>
667 >
668 >  </target>
669 >
670 >  <target name="jsr166ydist-jar"
671 >          depends="jsr166yclean, jsr166yjar">
672 >
673 >    <copy file="${jsr166yproduct.jar}" todir="${dist.dir}"/>
674 >
675    </target>
676  
677   </project>

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines