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.68 by jsr166, Mon Jun 14 17:22:09 2004 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.j1.dir"         location="${build.dir}/j1"/>
33    <property name="build.loops.dir"      location="${build.dir}/loops"/>
34    <property name="build.lib.dir"        location="${build.dir}/lib"/>
36  <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"/>
47  <property name="j1.src.dir"           location="${basedir}/src/javaone"/>
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"/>
51  <property name="ant.src.dir"          location="${basedir}/etc/ant"/>
52  <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"/>
62  <property name="concurrent.jar"       location="${lib.dir}/concurrent.jar"/>
67  
68    <!-- Bootclasspath argument -->
69    <property name="bootclasspath.args"   value="-Xbootclasspath/p:${product.jar}"/>
# Line 75 | Line 79
79      <pathelement location="${build.loops.dir}"/>
80    </path>
81  
78  <!-- J1 classpath -->
79  <path id="j1.classpath">
80    <pathelement location="${build.j1.dir}"/>
81    <pathelement location="${junit.jar}"/>
82    <pathelement location="${concurrent.jar}"/>
83  </path>
84
82  
83    <!-- Main targets -->
84  
# Line 101 | Line 98
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 137 | 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 <
144 <      <tag name="revised" description="Last revised:"/>
145 <      <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 152 | Line 152
152  
153  
154  
155  <target name="doccheck"
156          depends="filter-doccheck"
157          description="Reports on javadoc style errors">
158
159    <delete dir="${build.doccheck.dir}"/>
160    <mkdir dir="${build.doccheck.dir}"/>
161
162    <javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck"
163         docletpath="${lib.dir}/doccheck.jar"
164            destdir="${build.doccheck.dir}">
165      <packageset dir="${build.dc-filter.dir}"/>
166    </javadoc>
167
168    <echo>DocCheck output is in ${build.doccheck.dir}</echo>
169
170  </target>
171
172
173
174  <target name="checkstyle"
175          depends="filter-src"
176          description="Reports on style errors in Java source (verbose, mostly chaff)">
177
178    <taskdef resource="checkstyletask.properties"
179            classpath="${lib.dir}/checkstyle-all-3.1.jar"/>
180
181    <mkdir dir="${build.checkstyle.dir}"/>
182
183    <checkstyle config="etc/checkstyle/sun_checks.xml"
184       failOnViolation="false">
185      <formatter type="xml" toFile="${build.checkstyle.dir}/checkstyle-report.xml"/>
186      <fileset dir="${build.filter.src.dir}" includes="**/*.java"/>
187    </checkstyle>
188
189    <style in="${build.checkstyle.dir}/checkstyle-report.xml"
190          out="${build.checkstyle.dir}/checkstyle-report.html"
191        style="${stylesheet.dir}/checkstyle-frames.xsl"/>
192
193  </target>
194
195
196
155    <target name="dist"
156            depends="init, dist-clean, dist-jar, dist-docs"
157            description="Puts all distributable products in single hierarchy"/>
# Line 247 | 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"
252              source="${build.sourcelevel}">
253
254      <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 280 | Line 257
257    </target>
258  
259  
283  <target name="compile-ant-filter"
284          depends="init">
285
286    <mkdir dir="${build.ant.dir}"/>
287
288    <javac srcdir="${ant.src.dir}"
289          destdir="${build.ant.dir}"
290           source="1.4"/>
291
292  </target>
293
294
295  <target name="filter-src"
296          depends="compile-ant-filter">
297
298    <mkdir dir="${build.filter.src.dir}"/>
299
300    <copy todir="${build.filter.src.dir}">
301      <fileset dir="${src.dir}">
302        <include name="**/*.html"/>
303      </fileset>
304    </copy>
305
306    <copy todir="${build.filter.src.dir}">
307      <fileset dir="${src.dir}">
308        <exclude name="**/*.html"/>
309        <!-- Files excluded from dist-docs -->
310        <exclude name="java/util/Random.*"/>
311        <exclude name="sun/misc/Unsafe.*"/>
312      </fileset>
313      <!--
314      <filterchain>
315      -->
316
317        <!--
318         # This filter gets rid of angle-bracketed type parameters
319         # so that javadoc can run on the result. The following
320         # heuristic seems to work:
321         #
322         # For all lines not starting with space(s)-asterisk-space(s),
323         #   replace <something> with a space, where there may be more
324         #   than one right angle bracket at the end, and "something"
325         #   must not contain parens or pipes. (This may need some
326         #   tweaking.)
327         -->
328
329        <!--
330        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
331                      classpath="${build.ant.dir}">
332          <param name="notmatching" value="^\s+\*\s.*$"/>
333          <param name="pattern"     value="&lt;[^|>()]+?>+"/>
334          <param name="replacement" value=" "/>
335        </filterreader>
336        -->
337
338      <!--
339      </filterchain>
340      -->
341    </copy>
342
343  </target>
344
345
346  <target name="filter-doccheck"
347          depends="filter-src">
348
349    <mkdir dir="${build.dc-filter.dir}"/>
350
351    <copy todir="${build.dc-filter.dir}">
352      <fileset dir="${build.filter.src.dir}">
353        <include name="**/*.html"/>
354      </fileset>
355    </copy>
356
357    <property name="generic.declarations"
358             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 {}"
359    />
360
361    <copy todir="${build.dc-filter.dir}">
362      <fileset dir="${build.filter.src.dir}">
363        <exclude name="**/*.html"/>
364      </fileset>
365      <filterchain>
366        <!--
367         # These two filters try to make the source look like
368         # something that doccheck can process. The first removes
369         # -source 1.4 assertions and the second adds in a bunch
370         # of single letter public nested marker interfaces so that
371         # the generic type parameters are recognized.
372         -->
373
374        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
375                      classpath="${build.ant.dir}">
376          <param name="matching"    value="^\s*assert[\s ].*$"/>
377          <param name="pattern"     value="assert"/>
378          <param name="replacement" value="//assert"/>
379        </filterreader>
380
381        <filterreader classname="jsr166.ant.filters.ReplaceFilter"
382                      classpath="${build.ant.dir}">
383          <param name="matching"    value="^([^*]*(class|interface|implements) .*|)\{.*$"/>
384          <param name="pattern"     value="$"/>
385          <param name="replacement" value=" ${generic.declarations}"/>
386        </filterreader>
387
388      </filterchain>
389    </copy>
390
391  </target>
392
393
260    <target name="compile-tests"
261            depends="jar">
262  
# Line 511 | Line 377
377        <fileset dir="${build.reports.dir}">
378          <include name="TEST-*.xml"/>
379        </fileset>
380 <      <report styledir="${stylesheet.dir}"
515 <                format="${junit.report.format}"
516 <                 todir="${build.reports.dir}"
380 >      <report format="${junit.report.format}" todir="${build.reports.dir}"
381        />
382      </junitreport>
383  
# Line 563 | Line 427
427    </target>
428  
429  
566
567  <!-- Anthill targets -->
568
569  <target name="anthill-build">
570
571    <!-- Override this in user.properties -->
572    <property name="tiger.home" location="e:/j2sdk1.5.0"/>
573
574    <exec resultproperty="result.property" dir="${basedir}" executable="${tiger.home}/bin/java">
575      <arg value="-Xmx256000000"/>
576      <!-- classpath of new JVM -->
577      <arg value="-classpath"/> <arg path="${java.class.path}"/>
578      <!-- location of Ant home directory -->
579      <arg value="-Dant.home=${ant.home}"/>
580      <!-- the Ant main class -->
581      <arg value="org.apache.tools.ant.Main"/>
582      <!-- The build file -->
583      <arg value="-buildfile"/>  <arg value="build.xml"/>
584      <!-- the target to build on the new Ant instance -->
585      <arg value="-DJAVA_HOME=${tiger.home}"/>
586      <arg value="do-anthill-build"/>
587    </exec>
588  </target>
589
590  <target name="do-anthill-build"
591          depends="jar, test, docs, dist-docs"/>
592
593  <target name="anthill-publish">
594
595    <copy todir="${deployDir}/docs/private">
596      <fileset dir="${build.javadocs.dir}"/>
597    </copy>
598
599    <copy todir="${deployDir}/docs/public">
600      <fileset dir="${dist.javadocs.dir}"/>
601    </copy>
602
603    <copy tofile="${deployDir}/index.html"
604          file="${basedir}/etc/anthill-index.html"/>
605
606    <copy todir="${deployDir}/notes">
607      <fileset dir="${basedir}/etc/notes"/>
608    </copy>
609
610  </target>
611
612
613
430    <!-- Various demos and test programs -->
431  
432  
617  <target name="sample" depends="init, configure-compiler"
618          description="Standalone demo program">
619
620    <mkdir dir="${build.testcases.dir}"/>
621
622    <javac srcdir="${test.src.dir}"
623          destdir="${build.testcases.dir}"
624            debug="${build.debug}"
625       debuglevel="${build.debuglevel}"
626      deprecation="${build.deprecation}"
627           source="${build.sourcelevel}"
628             fork="true">
629
630      <include name="jsr166/test/Sample.java"/>
631
632    </javac>
633
634    <copy todir="${build.testcases.dir}">
635      <fileset dir="${test.src.dir}">
636        <include name="**/*.properties"/>
637      </fileset>
638    </copy>
639
640
641    <java classname="jsr166.test.Sample" fork="true">
642      <classpath refid="test.classpath"/>
643      <!-- <jvmarg value="-ea"/> -->
644      <!-- <jvmarg value="-server"/> -->
645      <!-- <arg value="1000"/> -->
646    </java>
647  </target>
648
649
433    <target name="loops" depends="init, configure-compiler"
434            description="Benchmark from Doug Lea's AQS paper">
435  
# Line 672 | Line 455
455    </target>
456  
457  
458 <  <target name="compile-j1" depends="init, configure-compiler">
458 >  <!-- jsr166x -->
459 >
460  
461 <    <mkdir dir="${build.j1.dir}"/>
461 >  <target name="jsr166xcompile"
462 >          depends="init, configure-compiler"
463 >          description="Compiles jsr166x sources">
464  
465 <    <javac srcdir="${j1.src.dir}"
466 <          destdir="${build.j1.dir}"
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}" >
472 >           source="${build.sourcelevel}"
473 >             fork="true">
474  
475        <include name="**/*.java"/>
687      <exclude name="**/dijkstra/**"/>
688
476        <compilerarg line="${build.args}"/>
690      <classpath refid="j1.classpath"/>
477  
478      </javac>
479  
480    </target>
481  
482  
697  <target name="sw" depends="compile-j1"
698          description="Runs the SwingWorker demo">
483  
484 <    <!--
485 <    <java classname="jsr166.swing.SwingWorkerDemo" fork="true">
486 <      <classpath refid="j1.classpath"/>
703 <    </java>
704 <    -->
484 >  <target name="jsr166xjar"
485 >          depends="jsr166xcompile"
486 >          description="Builds library jar from compiled sources">
487  
488 <    <copy todir="${build.j1.dir}" file="${j1.src.dir}/jsr166/swing/SwingWorker.html"/>
488 >    <mkdir dir="${build.jsr166xlib.dir}"/>
489  
490 <    <exec dir="${build.j1.dir}" executable="appletviewer.exe">
491 <      <arg value="${build.j1.dir}/SwingWorker.html"/>
492 <    </exec>
490 >    <jar destfile="${jsr166xproduct.jar}">
491 >      <fileset dir="${build.jsr166x.dir}"/>
492 >    </jar>
493  
494    </target>
495  
714  <target name="j1" depends="compile-j1"
715          description="Runs a standalone JavaOne program">
496  
717    <java classname="${j1.test}" fork="true">
718      <classpath refid="j1.classpath"/>
719      <jvmarg value="-client"/>
497  
498 <      <!-- WebCrawler args -->
499 <      <arg value="jsr166.webcrawler.WebCrawler3"/>
723 <      <arg value="http://www.priorartisans.com"/>
724 <      <arg value="25"/>
498 >  <target name="jsr166xdocs"
499 >          description="Builds javadocs with custom tags to build folder">
500  
501 <    </java>
501 >    <delete dir="${build.jsr166xjavadocs.dir}"/>
502 >    <mkdir dir="${build.jsr166xjavadocs.dir}"/>
503  
504 <  </target>
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 <  <target name="test-j1" depends="compile-j1"
510 <          description="Runs testcases from the JavaOne source directories">
509 >    >
510 >      <packageset dir="${topsrc.dir}" defaultexcludes="yes">
511 >      <include name="jsr166x"/>
512 >      </packageset>
513  
734    <junit printsummary="true"
735             showoutput="true"
736          errorProperty="junit.failed"
737        failureProperty="junit.failed"
738                    dir="${build.j1.dir}"
739                   fork="true">
514  
515 <      <!-- <jvmarg value="-server"/> -->
742 <      <classpath refid="j1.classpath"/>
743 <      <formatter type="xml"/>
515 >    </javadoc>
516  
517 <      <batchtest todir="${build.j1.dir}">
746 <        <fileset dir="${j1.src.dir}">
747 <          <include name="**/*Test.java"/>
748 <        </fileset>
749 <      </batchtest>
517 >  </target>
518  
751    </junit>
519  
520 <    <available property="junit.report.format"
521 <                  value="frames"
522 <              classname="org.apache.xalan.lib.Redirect"/>
756 <    <property name="junit.report.format" value="noframes"/>
520 >  <target name="jsr166xdist"
521 >          depends="jsr166xdist-clean, jsr166xdist-jar, jsr166xdist-docs"
522 >          description="Puts all distributable products in single hierarchy"/>
523  
758    <junitreport todir="${build.j1.dir}">
759      <fileset dir="${build.j1.dir}">
760        <include name="TEST-*.xml"/>
761      </fileset>
762      <report styledir="${stylesheet.dir}"
763                format="${junit.report.format}"
764                 todir="${build.j1.dir}"
765      />
766    </junitreport>
524  
525 <    <fail message="Test Cases Failed" if="junit.failed"/>
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 <  <!-- C++ and JNI definitions and demos -->
536 >  <target name="jsr166xdist-clean"
537 >          description="Removes all build and distribution products">
538  
539 <  <target name="configure-cpp">
539 >  </target>
540  
778    <!-- Define tasks and types -->
541  
780    <path id="cpptasks.path">
781      <pathelement location="${lib.dir}/cpptasks.jar"/>
782    </path>
783    <taskdef resource="cpptasks.tasks" classpathref="cpptasks.path"/>
784    <typedef resource="cpptasks.types" classpathref="cpptasks.path"/>
542  
543 <    <!-- Set platform property for JNI includes -->
543 >  <target name="jsr166xdist-docs"
544 >          description="Builds javadocs without custom tags to dist folder">
545  
546 <    <condition property="platform" value="linux">
547 <      <os name="Linux"/>
790 <    </condition>
791 <    <condition property="platform" value="win32">
792 <      <os family="windows"/>
793 <    </condition>
794 <    <condition property="platform" value="solaris">
795 <      <os name="SunOS"/>
796 <    </condition>
546 >    <delete dir="${dist.jsr166xjavadocs.dir}"/>
547 >    <mkdir dir="${dist.jsr166xjavadocs.dir}"/>
548  
549 <  </target>
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 <  <target name="cppdemo" depends="configure-cpp">
557 >    </javadoc>
558  
559 <    <mkdir dir="${build.dir}"/>
559 >  </target>
560  
561 <    <cc multithreaded="true"
562 <                 name="g++"
807 <               objdir="${build.dir}"
808 <              outfile="${build.dir}/CppDemo">
809 <      <fileset dir="${test.src.dir}" includes="CppDemo.cpp"/>
810 <      <libset libs="stdc++"/>
811 <    </cc>
561 >  <target name="jsr166xdist-jar"
562 >          depends="jsr166xclean, jsr166xjar">
563  
564 <    <exec executable="${build.dir}/CppDemo">
814 <      <arg line="count in word frequency of word in command line count"/>
815 <    </exec>
564 >    <copy file="${jsr166xproduct.jar}" todir="${dist.dir}"/>
565  
566    </target>
567  
568 +  <!-- jsr166y -->
569  
820  <target name="jnidemo" depends="init, configure-compiler, configure-cpp">
570  
571 <    <mkdir dir="${build.testcases.dir}"/>
571 >  <target name="jsr166ycompile"
572 >          depends="init, configure-compiler"
573 >          description="Compiles jsr166y sources">
574  
575 <    <javac srcdir="${test.src.dir}"
576 <          destdir="${build.testcases.dir}"
575 >    <mkdir dir="${build.jsr166y.dir}"/>
576 >
577 >    <javac srcdir="${jsr166ysrc.dir}"
578 >          destdir="${build.jsr166y.dir}"
579              debug="${build.debug}"
580         debuglevel="${build.debuglevel}"
581        deprecation="${build.deprecation}"
582             source="${build.sourcelevel}"
583               fork="true">
584 <      <compilerarg value="${bootclasspath.args}"/>
584 >
585 >      <include name="**/*.java"/>
586        <compilerarg line="${build.args}"/>
587 <      <classpath refid="test.classpath"/>
834 <      <include name="JniDemo.java"/>
835 <    </javac>
587 >      <compilerarg value="${bootclasspath.args}"/>
588  
589 <    <javah destdir="${build.testcases.dir}"
590 <      classpathref="test.classpath">
591 <      <class name="JniDemo"/>
840 <    </javah>
841 <
842 <    <cc multithreaded="true"
843 <                 name="g++"
844 <               objdir="${build.dir}"
845 <              outfile="${build.dir}/JniDemo"
846 <              outtype="shared">
847 <
848 <      <compiler>
849 <        <defineset>
850 <          <define name="__int64" value="long long"/>
851 <        </defineset>
852 <        <includepath location="${java.home}/../include"/>
853 <        <includepath location="${java.home}/../include/${platform}"/>
854 <        <compilerarg value="-mno-cygwin"/>
855 <      </compiler>
856 <
857 <      <linker>
858 <        <linkerarg value="--add-stdcall-alias"/>
859 <      </linker>
860 <
861 <      <includepath location="${build.testcases.dir}"/>
862 <
863 <      <fileset dir="${test.src.dir}" includes="JniDemo.cpp"/>
864 <
865 <      <libset libs="stdc++"/>
866 <
867 <    </cc>
868 <
869 <    <!-- Necessary if windows, harmless if not -->
870 <    <copy file="${build.dir}/libJniDemo.so" tofile="${build.dir}/JniDemo.dll"/>
871 <
872 <    <java classname="JniDemo" fork="true">
873 <      <!-- Watch out: path separator hardwired to semicolon here! -->
874 <      <sysproperty key="java.library.path" path="${java.library.path};${build.dir}"/>
875 <      <classpath refid="test.classpath"/>
876 <      <arg line="count in word frequency of word in command line count"/>
877 <    </java>
589 > <!--       <compilerarg line="-Xlint -Xmaxwarns 1000"/> -->
590 >
591 >    </javac>
592  
593    </target>
594  
595  
596  
597 <  <!-- Backward compatibility, work in progress (some files not checked in) -->
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  
607 +  </target>
608  
609  
887  <property name="pretiger.src.dir"     location="${build.dir}/pretiger/src"/>
888  <property name="build.pretiger.dir"   location="${build.dir}/pretiger/classes"/>
889  <property name="pretiger.jar"         location="${build.lib.dir}/jsr166-pretiger.jar"/>
890  <property name="pretiger.sourcelevel" value="1.4"/>
610  
611 <  <target name="defang"
612 <       depends="init"
894 <   description="Generates pre-Tiger compatible source">
611 >  <target name="jsr166ydocs"
612 >          description="Builds javadocs with custom tags to build folder">
613  
614 <    <delete dir="${pretiger.src.dir}"/>
615 <    <mkdir dir="${pretiger.src.dir}"/>
614 >    <delete dir="${build.jsr166yjavadocs.dir}"/>
615 >    <mkdir dir="${build.jsr166yjavadocs.dir}"/>
616  
617 <    <exec executable="perl">
618 <      <arg file="etc/defang.pl"/>
619 <      <!-- <arg value="-v"/> -->
620 <      <arg value="-s"/> <arg file="${src.dir}"/>
621 <      <arg value="-t"/> <arg file="${pretiger.src.dir}"/>
622 <    </exec>
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  
908  <target name="compile-pretiger"
909          depends="init, configure-compiler, defang"
910          description="Compiles pre-Tiger sources to build folder">
631  
632 <    <mkdir dir="${build.pretiger.dir}"/>
632 >  <target name="jsr166ydist"
633 >          depends="jsr166ydist-clean, jsr166ydist-jar, jsr166ydist-docs"
634 >          description="Puts all distributable products in single hierarchy"/>
635  
914    <javac srcdir="${pretiger.src.dir}"
915          destdir="${build.pretiger.dir}"
916            debug="${build.debug}"
917       debuglevel="${build.debuglevel}"
918      deprecation="${build.deprecation}"
919           source="${pretiger.sourcelevel}"
920             fork="true">
636  
922      <compilerarg line="${build.args}"/>
923      <exclude name="**/Thread.java"/>
637  
638 <    </javac>
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  
929  <target name="pretiger" depends="compile-pretiger">
646  
931    <mkdir dir="${build.lib.dir}"/>
647  
648 <    <jar destfile="${pretiger.jar}">
649 <      <fileset dir="${build.pretiger.dir}">
650 <      </fileset>
651 <    </jar>
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  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines