doccoで coffeescript ドキュメントを生成するための ant ファイルがあります。現在、すべてのドキュメント ファイルが docs フォルダーにダンプされていることを除いて、正常に動作します。すべてのファイルを 1 つのディレクトリにフラットにダンプするのではなく、docs フォルダーにスクリプト ディレクトリの構造を反映させたいと考えています。
<target name="documentation" description="Generate Docco Documentation for coffee files">
<apply executable="docco" verbose="true" force="true" failonerror="true">
<srcfile />
<fileset dir ="${src.script.dir}" >
<include name="**/*.coffee"/>
</fileset>
</apply>
</target>
docco に --output 引数があることは知っていますが、ファイルセット内の各ファイルの docs フォルダーに docs ディレクトリ パスを 1 つずつ調べずに生成する方法がわかりません。