source: trunk/abcl/etc/ant/netbeans-build.xml

Last change on this file was 15084, checked in by Mark Evenson, 7 years ago

Miscellaneous fixups to source locations and documentation

Build 1.6.0-SNAPSHOT via Maven.

Fix various ABCL-CONTRIB documentation quirks.

Move Netbeans/Ant? integration into a subdirectory.

File size: 655 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
10  <target name="-pre-compile" if="abcl.compile.lisp.skip">
11    <antcall target="abcl.copy.lisp"/>
12  </target>
13
14  <target name="-post-compile" unless="abcl.compile.lisp.skip">
15    <antcall>
16    <target name="abcl.compile.lisp"/>
17    <target name="abcl.jar" />
18      <target name="abcl-contrib.jar"/>
19    <target name="abcl.wrapper" />
20  </antcall>
21  </target>
22
23</project>
24
Note: See TracBrowser for help on using the repository browser.