help - uptodate task clarification needed please.

2002-02-21 Thread Jeff Vincent
Could someone please help me clarify the usage of the uptodate task in ANT (v1.4.1) ? I have the following files: ./build.xml ./Lexer.g ./gensrc/Lexer.java ./gensrc/LexerTokenTypes.java ./gensrc/LexerTokenTypes.txt The 'gensrc' directory is peer to both the Lexer.g file and my build.xml file.

Re: help - uptodate task clarification needed please.

2002-02-21 Thread Diane Holt
--- 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

Re: help - uptodate task clarification needed please.

2002-02-21 Thread Jeff Vincent
ACK!! — Thank you. I really need more sleep. [EMAIL PROTECTED] 02/21/02 07:42PM --- Jeff Vincent [EMAIL PROTECTED] wrote: target name=isUpToDate uptodate property=buildLexer targetfile=gensrc/Lexer.java srcfiles dir=. includesfile=Lexer.g/ /uptodate /target