blob: 10a09b4c3a02246e45bb08c654f36c7451fa1543 [file] [log] [blame]
<!--
Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<project name="Coffee Break, common" default="build" basedir=".">
<target name="init">
<tstamp/>
</target>
<property name="build" value="build" />
<property name="src" value="src" />
<target name="prepare" depends="init"
description="Create build directories.">
<mkdir dir="${build}" />
</target>
<!-- Executable Targets -->
<target name="compile" depends="prepare"
description="Compile .java files." >
<javac
srcdir="${src}"
destdir="${build}"
includes="**/*.java"
/>
</target>
<target name="build" depends="compile"
description="Compiles source.">
</target>
<target name="clean"
description="Removes the build directory.">
<delete dir="${build}" />
</target>
</project>