我有 Docbook 中使用的 Ant 构建文件。现在我要将该 Ant 构建文件转换为使用 Xsltproc 处理器的 Makefile。我对 Makefile 或 Ant 都不是特别熟悉。所以请帮我转换它。有什么我应该遵循的资源吗?
这里我想, 1. 将文件夹结构及其内容复制到另一个文件夹中 2. 配置 java 系统属性 3. 配置类路径
在 ant 脚本中,它有这样的代码,
<copy todir="${output-dir}">
<fileset dir="${ant.file.dir}/template">
<include name="**/*"/>
</fileset>
</copy>
<java classname="com.nexwave.nquindexer.IndexerMain" fork="true">
<sysproperty key="htmlDir" value="${output-dir}/content"/>
<sysproperty key="htmlExtension" value="${html.extension}"/>
<classpath>
<path refid="classpath"/>
<pathelement location="${xercesImpl.jar}"/>
<pathelement location="/usr/share/xml-commons/lib/xml-apis.jar"/>
</classpath>
</java>
我想在make中转换以上2个代码。谢谢..!!