aboutsummaryrefslogtreecommitdiff
path: root/build.xml
blob: 67a56dbfd0377d9e27df279a8b3c28938d75ef41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<project name="clojure-contrib" default="jar">

  <description>
    Pack all clojure-contrib sources into a JAR.
  </description>

  <!-- The JAR file to create. -->
  <property name="jarfile" location="clojure-contrib.jar"/>

  <target name="clean"
          description="Remove generated files and directories.">
    <delete file="${jarfile}"/>
  </target>

  <target name="jar"
          description="Create jar file.">
    <jar jarfile="${jarfile}">
      <fileset dir="." includes="CPL.TXT"/>
      <fileset dir="./src" includes="clojure/contrib/**/*.clj"/>
    </jar>
  </target>

</project>