add a compile target to the top

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@933598 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Grant Ingersoll 2010-04-13 13:28:56 +00:00
parent 4f860640a8
commit 6d356c8d26
1 changed files with 12 additions and 3 deletions

View File

@ -19,7 +19,7 @@
<project name="lucene-solr" default="test" basedir=".">
<property name="lucene.version" value="3.1-dev" />
<target name="test">
<target name="test" description="Test both Lucene and Solr">
<sequential>
<subant target="test" inheritall="false" failonerror="true">
<fileset dir="lucene" includes="build.xml" />
@ -31,7 +31,16 @@
</sequential>
</target>
<target name="clean">
<target name="compile" description="Compile Lucene and Solr">
<sequential>
<subant target="compile" inheritall="false" failonerror="true">
<!--<fileset dir="lucene" includes="build.xml" /> -->
<fileset dir="solr" includes="build.xml" />
</subant>
</sequential>
</target>
<target name="clean" description="Clean Lucene and Solr">
<sequential>
<subant target="clean" inheritall="false" failonerror="true">
<fileset dir="lucene" includes="build.xml" />
@ -40,4 +49,4 @@
</sequential>
</target>
</project>
</project>