Skip to content

Commit

Permalink
Initial stab at an Ant build system. Just compilation for now. Ant ro…
Browse files Browse the repository at this point in the history
…cks!
  • Loading branch information
Pierre-Luc Paour committed Sep 4, 2002
1 parent edd078e commit f55106d
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions build.xml
@@ -0,0 +1,35 @@
<project name="GalleryRemote" default="compile" basedir=".">
<description>
A part of the Gallery project
</description>
<!-- set global properties for this build -->
<property name="src" location="."/>
<property name="build" location="build"/>
<property name="dist" location="dist"/>

<target name="init">
<!-- Create the time stamp -->
<tstamp/>
<!-- Create the build directory structure used by compile -->
<mkdir dir="${build}"/>
</target>

<target name="compile" depends="init"
description="compile the source " >
<!-- Compile the java code from ${src} into ${build} -->
<javac srcdir="${src}" destdir="${build}"
includes="com/**,HTTPClient/**"
listfiles="on" debug="on" source="1.3" />

<!-- other files needed -->
<copy file="${src}/remoteAbout.gif" todir="${build}" />
</target>

<target name="clean"
description="clean up" >
<!-- Delete the ${build} and ${dist} directory trees -->
<delete dir="${build}"/>
<delete dir="${dist}"/>
</target>
</project>

0 comments on commit f55106d

Please sign in to comment.