Я использую ANT для создания моих отчетов FlexUnit в стиле JUnit. Я раньше не работал с Make, поэтому не могу напрямую помочь вам с синтаксисом для этого. Однако, в случае, если это поможет, это просто для файла сборки ANT моего проекта:
<target name="test">
<echo>Executing FlexUnit tests...</echo>
<!-- Execute TestRunner.swf as FlexUnit tests and publish reports -->
<flexunit
workingDir="${bin.loc}"
toDir="${report.loc}"
haltonfailure="false"
verbose="true"
localTrusted="true">
<source dir="${main.src.loc}" />
<testSource dir="${test.src.loc}">
<include name="**/*Test.as" />
</testSource>
<library dir="${lib.loc}"/>
</flexunit>
<echo>Testing Complete</echo>
<echo>Generating test reports...</echo>
<!-- Generate readable JUnit-style reports -->
<junitreport todir="${report.loc}">
<fileset dir="${report.loc}">
<include name="TEST-*.xml" />
</fileset>
<report format="frames" todir="${report.loc}/html" />
</junitreport>
<copy todir="./test-reports">
<fileset dir="${report.loc}"/>
</copy>
<echo>Generation complete</echo>
</target>
Как видите, я использую flexUnitTasks для запуска тестов и задачу junitreport для генерации отчетов.