| Line | |
|---|
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 | <project xmlns="antlib:org.apache.tools.ant" |
|---|
| 3 | name="abcl" default="default" basedir="."> |
|---|
| 4 | |
|---|
| 5 | <!-- XXX need way to autodetect NetBeans as installed, as this will |
|---|
| 6 | probably fail otherwise. --> |
|---|
| 7 | <import file="nbproject/build-impl.xml"/> |
|---|
| 8 | |
|---|
| 9 | <target name="-post-compile"> |
|---|
| 10 | <echo>build.classes.dir: ${build.classes.dir}</echo> |
|---|
| 11 | <copy todir="${build.classes.dir}"> |
|---|
| 12 | <fileset dir="${basedir}/src"> |
|---|
| 13 | <patternset refid="abcl.source.lisp"/> |
|---|
| 14 | </fileset> |
|---|
| 15 | </copy> |
|---|
| 16 | |
|---|
| 17 | <java classpath="${build.classes.dir}" |
|---|
| 18 | fork="true" |
|---|
| 19 | classname="org.armedbear.lisp.Main"> |
|---|
| 20 | <arg value="--noinit"/> |
|---|
| 21 | <arg value="--eval"/> |
|---|
| 22 | <arg value="(compile-system :zip nil :quit t)"/> |
|---|
| 23 | </java> |
|---|
| 24 | </target> |
|---|
| 25 | </project> |
|---|
| 26 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.