RE: javacc on multiple files

2005-07-22 Thread Juergen Hermann
On Fri, 22 Jul 2005 11:47:45 -0700, Bill Rich wrote: >This is untested -- >You can use to generate a list of your *.jj files, then use > to place the list in a property, then use the ant-contrib > to iterate over the property passing each file in the list to javacc. btw, for iterates over files

RE: javacc on multiple files

2005-07-22 Thread Burgess, Benjamin
Users List' Subject: RE: javacc on multiple files This is untested -- You can use to generate a list of your *.jj files, then use to place the list in a property, then use the ant-contrib to iterate over the property passing each file in the list to javacc. HTH Bill -Original Message

RE: javacc on multiple files

2005-07-22 Thread Bill Rich
] Sent: Friday, July 22, 2005 11:25 AM To: user@ant.apache.org Subject: javacc on multiple files Hi, I have a directory of files to compile with javacc (note the extra "c"), but it looks like the javacc optional task only lets you specify one file. I would like to be able to specify

javacc on multiple files

2005-07-22 Thread eph1v3t8-antu5112
Hi, I have a directory of files to compile with javacc (note the extra "c"), but it looks like the javacc optional task only lets you specify one file. I would like to be able to specify the parent directory, and have ant run javacc on all of the *.jj files in that directory. Is there any