source: tags/1.5.0/netbeans-build.xml

Last change on this file was 14609, checked in by Mark Evenson, 10 years ago

netbeans: Ensure dist/abcl.jar and dist/abcl-contrib.jar are packaged after the compile.

File size: 648 bytes
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="-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>
15    <target name="abcl.compile.lisp"/>
16    <target name="abcl.jar" />
17      <target name="abcl-contrib.jar"/>
18    <target name="abcl.wrapper" />
19  </antcall>
20  </target>
21
22</project>
23
Note: See TracBrowser for help on using the repository browser.