mirror of
https://github.com/marcin-szczepanski/jFuzzyLogic.git
synced 2024-12-19 08:40:28 +01:00
13 lines
405 B
Plaintext
13 lines
405 B
Plaintext
|
/** templates used to generate make-compatible dependencies */
|
||
|
group depend;
|
||
|
|
||
|
/** Generate "f : x, y, z" dependencies for input
|
||
|
* dependencies and generated files. in and out
|
||
|
* are File objects. For example, you can say
|
||
|
* <f.canonicalPath>
|
||
|
*/
|
||
|
dependencies(grammarFileName,in,out) ::= <<
|
||
|
<if(in)><grammarFileName>: <in; separator=", "><endif>
|
||
|
<out:{f | <f> : <grammarFileName>}; separator="\n">
|
||
|
>>
|