configurationengine/generatedoc-build.xml
author terytkon
Thu, 11 Mar 2010 17:04:37 +0200
changeset 0 2e8eeb919028
permissions -rw-r--r--
Adding EPL version of configurationengine.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     1
<!--****************************************************************************
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     2
 * ConE document generation
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     3
 * This ant build.xml will generate all ConE related documents
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     4
 ****************************************************************************-->
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     5
 
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     6
<project name="ConE generatedoc" default="doc-all">
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     7
	<!-- import common properties for this plugin -->
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     8
	<property file="common.properties"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     9
	<property file="install.properties"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    10
    
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    11
	<target name="doc-all" depends="epydoc, sphinx"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    12
    
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    13
	<target name="init-generatedoc">
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    14
	  <mkdir dir="${document.output}"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    15
	  <mkdir dir="${document.output}/epydoc"/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    16
	</target>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    17
      
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    18
	<target name="epydoc" depends="init-generatedoc">
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    19
		<exec executable="cmd">
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    20
            <arg line='/c "epydoc source/cone -o ${document.output}/epydoc --exclude tests"'/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    21
		</exec>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    22
	</target>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    23
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    24
	<target name="sphinx" depends="init-generatedoc">
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    25
        <exec executable="cmd">
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    26
            <arg line='/c "sphinx-build -b html ./doc ${document.output}"'/>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    27
		</exec>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    28
	</target>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    29
  	
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    30
</project>
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    31
     
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    32
     
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    33