build.xml
changeset 2 f4add19ab159
parent 0 e0dbaef72362
child 6 ad18534e08fd
--- a/build.xml
+++ b/build.xml
@@ -6,7 +6,7 @@
 	<property name="jar.file" value="bin/games.jar" />
 	<property name="classpath.dir" value="/usr/local/lib/classes" />
 	<property name="www.dir" value="/var/www/localhost/htdocs/classes" />
-	<property name="docs.dir" value="docs/" />
+	<property name="docs.dir" value="doc/" />
 	<property name="debug" value="simu" />
 
 	<property name="distributable.exts"
@@ -30,24 +30,24 @@
 	    depends="compile,docs-init"
     	description="Generate JavaDocs.">
 
-    <javadoc destdir="${docs.dir}"
-        author="true"
-        version="true"
-        use="true"
-        windowtitle="${ant.project.name}"
-        sourcepathref="Schach.classpath"
-        packagenames="org.*"
-        verbose="false">
-        <doctitle><![CDATA[<h1>${ant.project.name}</h1>]]></doctitle>
-        <bottom>
-            <![CDATA[<i>Developed by Largo Enterprises in 2008</i>]]>
-        </bottom>
-    </javadoc>
+	    <javadoc destdir="${docs.dir}"
+    	    author="true"
+        	version="true"
+	        use="true"
+    	    windowtitle="${ant.project.name}"
+        	sourcepathref="Schach.classpath"
+	        packagenames="org.*"
+    	    verbose="false">
+        	<doctitle><![CDATA[<h1>${ant.project.name}</h1>]]></doctitle>
+	        <bottom>
+    	        <![CDATA[<i>Developed by Largo Enterprises in 2008</i>]]>
+        	</bottom>
+	    </javadoc>
+	</target>
 
+	<target name="docs-init">
+	    <mkdir dir="${docs.dir}"/>
 	</target>
-		<target name="docs-init">
-		    <mkdir dir="${docs.dir}"/>
-		</target>
 
 	<target name="docs-clean">
     	<delete dir="${docs.dir}"/>