--- Jeff Vincent <[EMAIL PROTECTED]> wrote:
> <target name="isUpToDate">
> <uptodate property="buildLexer"
> targetfile="gensrc/Lexer.java">
> <srcfiles dir="." includesfile="Lexer.g"/>
> </uptodate>
> </target>
You do have them backwards -- you also have the wrong attribute
('includesfile' is used to point to a file that contains a list of
[possibly patterned] filenames).
Try:
<target name="isUpToDate">
<uptodate property="buildLexer" targetfile="Lexer.g">
<srcfiles dir="gensrc" includes="Lexer.java"/>
</uptodate>
<echo message="buildLexer = ${buildLexer}"/>
</target>
Diane
=====
([EMAIL PROTECTED])
__________________________________________________
Do You Yahoo!?
Yahoo! Sports - Coverage of the 2002 Olympic Games
http://sports.yahoo.com
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>