Changeset 12684 for branches/0.20.x/abcl/build.xml
- Timestamp:
- 05/15/10 16:33:15 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.20.x/abcl/build.xml
r12659 r12684 102 102 <echo>Compiled ABCL with Java version: ${java.version}</echo> 103 103 </target> 104 104 105 105 <target name="abcl.clean.maybe" unless="abcl.build.incremental"> 106 106 <echo>Cleaning all intermediate compilation artifacts.</echo> … … 224 224 location="${build.classes.dir}/org/armedbear/lisp/"/> 225 225 <pathconvert dirsep="/" property="abcl.lisp.output" refid="abcl.lisp.output.path"/> 226 227 <property name="system.lisp.file" 228 value="${build.classes.dir}/org/armedbear/lisp/system.lisp"/> 226 229 227 230 <target name="abcl.compile.lisp" 228 depends="abcl.copy.lisp,abcl.compile.java,abcl. fasls.uptodate"231 depends="abcl.copy.lisp,abcl.compile.java,abcl.system.update.maybe,abcl.fasls.uptodate" 229 232 unless="abcl.fasls.uptodate.p"> 230 233 <echo> … … 242 245 <arg value="(setf *load-verbose* t)"/> 243 246 </java> 247 <concat destfile="${system.lisp.file}" append="true"> 248 <fileset file="${abcl.startup.file}"/> 249 </concat> 244 250 </target> 245 251 … … 270 276 <exec executable="hostname" outputproperty="abcl.hostname"/> 271 277 <echo>abcl.hostname: ${abcl.hostname}</echo> 278 </target> 279 280 <target name="abcl.system.uptodate"> 281 <uptodate property="abcl.system.needs-update.p" 282 srcfile="${system.lisp.file}" 283 targetfile="${abcl.startup.file}"/> 284 </target> 285 286 <target name="abcl.system.update.maybe" depends="abcl.system.uptodate" if="abcl.system.needs-update.p"> 287 <touch file="${src.dir}/org/armedbear/lisp/compile-system.lisp"/> 272 288 </target> 273 289
Note: See TracChangeset
for help on using the changeset viewer.