summaryrefslogtreecommitdiff
path: root/qpid
diff options
context:
space:
mode:
authorKim van der Riet <kpvdr@apache.org>2007-01-02 14:41:18 +0000
committerKim van der Riet <kpvdr@apache.org>2007-01-02 14:41:18 +0000
commit616883ea72b49a22079126793e079e53cfd2e2f3 (patch)
treed616ae886cce997f5cadc086004bc5ee43faa761 /qpid
parentf96388bb6a6c9e94e7366bc2dd4da5a60f916671 (diff)
downloadqpid-python-616883ea72b49a22079126793e079e53cfd2e2f3.tar.gz
Added ant build file for the generator with compile (default) and clean targets.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@491801 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid')
-rw-r--r--qpid/gentools/build.xml35
1 files changed, 35 insertions, 0 deletions
diff --git a/qpid/gentools/build.xml b/qpid/gentools/build.xml
new file mode 100644
index 0000000000..9a8a419f09
--- /dev/null
+++ b/qpid/gentools/build.xml
@@ -0,0 +1,35 @@
+<!--
+ -
+ - Licensed to the Apache Software Foundation (ASF) under one
+ - or more contributor license agreements. See the NOTICE file
+ - distributed with this work for additional information
+ - regarding copyright ownership. The ASF licenses this file
+ - to you under the Apache License, Version 2.0 (the
+ - "License"); you may not use this file except in compliance
+ - with the License. You may obtain a copy of the License at
+ -
+ - http://www.apache.org/licenses/LICENSE-2.0
+ -
+ - Unless required by applicable law or agreed to in writing,
+ - software distributed under the License is distributed on an
+ - "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ - KIND, either express or implied. See the License for the
+ - specific language governing permissions and limitations
+ - under the License.
+ -
+ -->
+<project name="gentools" default="compile">
+ <property name="src" location="src" />
+
+ <target name="compile">
+ <javac srcdir="${src}" source="1.5" fork="true" />
+ <java classpath="${src}" classname="org.apache.qpid.gentools.Main" fork="true" />
+ </target>
+
+ <target name="clean">
+ <delete>
+ <fileset dir="${src}/org/apache/qpid/gentools" includes="*.class" />
+ </delete>
+ </target>
+
+</project>