diff options
author | Doug Schaefer | 2007-06-11 18:59:08 +0000 |
---|---|---|
committer | Doug Schaefer | 2007-06-11 18:59:08 +0000 |
commit | b545010fbdea19515063484081031d2b3e8aa2d9 (patch) | |
tree | 127e35d4626a3a7db65d43dd41cf702b4c7af5e6 /doc/org.eclipse.cdt.doc.user/build.xml | |
parent | 7c00a4e6561a33ad944900458fc1d3bfbac3f384 (diff) | |
download | org.eclipse.cdt-b545010fbdea19515063484081031d2b3e8aa2d9.tar.gz org.eclipse.cdt-b545010fbdea19515063484081031d2b3e8aa2d9.tar.xz org.eclipse.cdt-b545010fbdea19515063484081031d2b3e8aa2d9.zip |
Bug 157260 - Add custom callbacks to call the buildDoc script to generate the API docs. Also get rid of the user doc's build.xml file since we use the generated one anyway.
Diffstat (limited to 'doc/org.eclipse.cdt.doc.user/build.xml')
-rw-r--r-- | doc/org.eclipse.cdt.doc.user/build.xml | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/doc/org.eclipse.cdt.doc.user/build.xml b/doc/org.eclipse.cdt.doc.user/build.xml deleted file mode 100644 index 9fec9e8e42a..00000000000 --- a/doc/org.eclipse.cdt.doc.user/build.xml +++ /dev/null @@ -1,75 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<project name="org.eclipse.jdt.doc.user" default="build.jars" basedir="."> - - <target name="init"> - <property name="plugin" value="org.eclipse.cdt.doc.user"/> - <property name="version.suffix" value="_3.0.0"/> - <property name="full.name" value="${plugin}${version.suffix}"/> - <property name="temp.folder" value="${basedir}/temp.folder"/> - <property name="plugin.destination" value="${basedir}"/> - <property name="build.result.folder" value="${basedir}"/> - </target> - - <target name="build.update.jar" depends="init"> - <delete dir="${temp.folder}"/> - <mkdir dir="${temp.folder}"/> - <antcall target="build.jars"/> - <antcall target="gather.bin.parts"> - <param name="destination.temp.folder" value="${temp.folder}/"/> - </antcall> - <zip zipfile="${plugin.destination}/${full.name}.jar" basedir="${temp.folder}/${full.name}" filesonly="false"/> - <delete dir="${temp.folder}"/> - </target> - - <target name="gather.bin.parts" depends="init" if="destination.temp.folder"> - <mkdir dir="${destination.temp.folder}/${full.name}"/> - <zip zipfile="${destination.temp.folder}/${full.name}/doc.zip" - basedir="${basedir}" - includes="*.css, hglegal.htm, ngibmcpy.gif, concepts/**, getting_started/**, images/**, reference/**, tasks/**, tips/**, whatsNew/**, cheatsheets/**" - /> - <copy todir="${destination.temp.folder}/${full.name}"> - <fileset dir="${basedir}" includes="*.properties,*.xml,*.zip,*.html,*.htm,*.gif,*.css" excludes="build.properties,build.xml"/> - </copy> - </target> - - <target name="build.jars" depends="init"> - </target> - - <target name="gather.sources" depends="init" if="destination.temp.folder"> - </target> - - <target name="build.sources" depends="init"> - </target> - - <target name="gather.logs" depends="init" if="destination.temp.folder"> - </target> - - <target name="clean" depends="init"> - <delete file="${plugin.destination}/${full.name}.jar"/> - <delete file="${plugin.destination}/${full.name}.zip"/> - <delete dir="${temp.folder}"/> - </target> - - <target name="refresh" depends="init" if="eclipse.running"> - <eclipse.refreshLocal resource="${plugin}" depth="infinite"/> - </target> - - <target name="zip.plugin" depends="init"> - <delete dir="${temp.folder}"/> - <mkdir dir="${temp.folder}"/> - <antcall target="build.jars"/> - <antcall target="build.sources"/> - <antcall target="gather.bin.parts"> - <param name="destination.temp.folder" value="${temp.folder}/"/> - </antcall> - <antcall target="gather.sources"> - <param name="destination.temp.folder" value="${temp.folder}/"/> - </antcall> - <delete> - <fileset dir="${temp.folder}" includes="**/*.bin.log"/> - </delete> - <zip zipfile="${plugin.destination}/${full.name}.zip" basedir="${temp.folder}" filesonly="true"/> - <delete dir="${temp.folder}"/> - </target> - -</project>
\ No newline at end of file |