Changeset 12404
- Timestamp:
- 01/26/10 11:30:57 (14 years ago)
- Location:
- trunk/abcl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/build.properties.in
r11529 r12404 1 1 # build.properties 2 2 # $Id: build.properties,v 1.23 2007-03-03 19:19:11 piso Exp $ 3 4 # Contents show up in JAR Manifest in the Implementation-Source attribute 5 #version.src=[abcl] 6 7 # If set, ABCL attempts to perform incremental compilation 8 #abcl.build.incremental=true 9 10 # Skip the compilation of Lisp sources (for debugging) 11 #abcl.compile.lisp.skip=true -
trunk/abcl/build.xml
r12338 r12404 77 77 <include name="org/armedbear/lisp/boot.lisp"/> 78 78 <include name="org/armedbear/lisp/scripting/lisp/*.lisp" if="abcl.jsr-223.p"/> 79 <include name="**/*.lisp" if="abcl.compile.lisp.skip"/> 79 80 </patternset> 80 81 … … 270 271 <property name="abcl.version.path" 271 272 value="${build.classes.dir}/org/armedbear/lisp/version"/> 272 <target name="abcl.stamp.version" depends="abcl.compile" >273 <target name="abcl.stamp.version" depends="abcl.compile" unless="abcl.compile.lisp.skip"> 273 274 <!-- Determine which ABCL version we have just built by parsing 274 275 the output of LISP-IMPLEMENTATION-VERSION. --> … … 608 609 <!-- For now, we list tests explicitly, because we have to 609 610 enumerate them later to the JUnit test runner. --> 610 <include name="org/armedbear/lisp/FastStringBufferTest.java"/> 611 </patternset> 612 613 <property name="junit-4.5.path" 614 value="${abcl.ext.dir}/junit-4.5.jar"/> 611 <include name="org/armedbear/lisp/*.java"/> 612 </patternset> 613 614 <property name="junit.path" 615 value="${abcl.ext.dir}/junit-4.8.1.jar"/> 616 615 617 616 618 <path id="abcl.test.compile.classpath"> 617 <pathelement location="${junit -4.5.path}"/>619 <pathelement location="${junit.path}"/> 618 620 <pathelement location="${build.classes.dir}"/> 619 621 </path> … … 624 626 <!--XXX generalize over enumeration of all contributions to 625 627 abcl.ext if we get more of them. --> 626 <available file="${junit -4.5.path}" property="abcl.ext.p"/>628 <available file="${junit.path}" property="abcl.ext.p"/> 627 629 </target> 628 630 <target name="abcl.ext" depends="abcl.ext.p" unless="abcl.ext.p"> 629 631 630 632 <mkdir dir="${abcl.ext.dir}"/> 631 <get src="http://downloads.sourceforge.net/junit/junit-4.5.jar?modtime=1218209625" 632 usetimestamp="true" 633 dest="${junit-4.5.path}"/> 633 <get 634 src="http://cloud.github.com/downloads/KentBeck/junit/junit-4.8.1.jar" 635 usetimestamp="true" 636 dest="${junit.path}"/> 634 637 </target> 635 638 636 639 <target name="abcl.test.compile" 637 depends="abcl.test.pre-compile ,abcl.compile">640 depends="abcl.test.pre-compile"> 638 641 <mkdir dir="${abcl.test.classes.dir}"/> 639 642 <javac destdir="${abcl.test.classes.dir}" … … 659 662 classname="org.junit.runner.JUnitCore"> 660 663 <arg value="org.armedbear.lisp.FastStringBufferTest"/> 664 <arg value="org.armedbear.lisp.PathnameTest"/> 665 <arg value="org.armedbear.lisp.StreamTest"/> 661 666 </java> 662 667 </target> -
trunk/abcl/nbproject/project.properties
r12354 r12404 19 19 dist.jar=${dist.dir}/abcl.jar 20 20 dist.javadoc.dir=${dist.dir}/javadoc 21 endorsed.classpath= 21 22 excludes= 22 23 file.reference.abcl-src=src … … 56 57 platform.active=default_platform 57 58 run.classpath=\ 58 ${ javac.classpath}:\59 ${ build.classes.dir}59 ${build.classes.dir}:\ 60 ${javac.classpath} 60 61 # Space-separated list of JVM arguments used when running the project 61 62 # (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value … … 63 64 run.jvmargs= 64 65 run.test.classpath=\ 65 ${ javac.test.classpath}:\66 ${ build.test.classes.dir}66 ${build.test.classes.dir}:\ 67 ${javac.test.classpath} 67 68 source.encoding=UTF-8 68 69 src.dir=${file.reference.abcl-src} -
trunk/abcl/netbeans-build.xml
r12354 r12404 7 7 <import file="nbproject/build-impl.xml"/> 8 8 9 <target name="-post-compile"> 10 <antcall target="abcl.compile.lisp"/> 9 <target name="-pre-compile" if="abcl.compile.lisp.skip"> 10 <antcall target="abcl.copy.lisp"/> 11 </target> 12 13 <target name="-post-compile" unless="abcl.compile.lisp.skip"> 14 <antcall target="abcl.compile.lisp" /> 11 15 </target> 12 16 </project>
Note: See TracChangeset
for help on using the changeset viewer.