Skip to content

Commit

Permalink
Forgot to upload the updated build.xml
Browse files Browse the repository at this point in the history
git-svn-id: https://cdk.svn.sourceforge.net/svnroot/cdk/trunk/cdk@2729 eb4e18e3-b210-0410-a6ab-dec725e4b171
  • Loading branch information
egonw committed Mar 31, 2004
1 parent 5b501a9 commit 2fa9ba9
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,18 @@
targetfile="${src}/core.javafiles">
<srcfiles dir="${src}" includes="**/*.java" />
</uptodate>
<uptodate property="dotjjfiles.uptodate"
targetfile="${src}/org/openscience/cdk/iupac/parser/NomParser.java">
<srcfiles dir="${src}" includes="org/openscience/cdk/iupac/parser/NomParser.jj" />
</uptodate>
<condition property="dotjjfiles.uptodate">
<and>
<uptodate property="NomParserJavafiles.uptodate"
targetfile="${src}/org/openscience/cdk/iupac/parser/NomParser.java">
<srcfiles dir="${src}" includes="org/openscience/cdk/iupac/parser/NomParser.jj" />
</uptodate>
<uptodate property="SMARTSParserJavafiles.uptodate"
targetfile="${src}/org/openscience/cdk/smiles/smarts/SMARTSParser.java">
<srcfiles dir="${src}" includes="org/openscience/cdk/smiles/smarts/SMARTSParser.jj" />
</uptodate>
</and>
</condition>
</target>

<target id="init" name="init" depends="check, setupBuildDir"/>
Expand Down Expand Up @@ -343,6 +351,14 @@
<javacc target="${src}/org/openscience/cdk/iupac/parser/NomParser.jj"
outputdirectory="${src}/org/openscience/cdk/iupac/parser/"
javacchome="${lib}"/>
<delete>
<fileset id="javacc-generated"
dir="${src}/org/openscience/cdk/smiles/smarts/"
includes="*.java"/>
</delete>
<javacc target="${src}/org/openscience/cdk/smiles/smarts/SMARTSParser.jj"
outputdirectory="${src}/org/openscience/cdk/smiles/smarts/"
javacchome="${lib}"/>
</target>

<target id="compile-extra" name="compile-extra" depends="dist-standard, dist-io, dist-render">
Expand Down

0 comments on commit 2fa9ba9

Please sign in to comment.