summaryrefslogtreecommitdiff
path: root/website/build.xml
blob: 7816d4659558ddadac65c0f565de15fcd8b9841b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<project name="DocBook XSLT 1.0 stylesheets - Website" default="all">

  <property name="dbroot.dir" value="${ant.file}/../.."/>
  <import file="../tools/build-shared.xml"/>

  <target name="all" depends="param">
  </target>

  <target name="param">
    <echo>Building Website parameters...</echo>
    <antcall target="build-params">
      <param name="condition" value="website"/>
    </antcall>
  </target>

  <target name="clean">
    <antcall target="clean-params"/>
  </target>

</project>