| <project name="Product Build allElements Delegator"> |
| <property name="archiveNamePrefix" value="${buildId}"/> |
| |
| <!-- ===================================================================== --> |
| <!-- Run a given ${target} on all elements being built --> |
| <!-- Add on <ant> task for each top level element being built. --> |
| <!-- ===================================================================== --> |
| <target name="allElementsDelegator"> |
| <ant antfile="${genericTargets}" target="${target}"> |
| <property name="type" value="feature" /> |
| <property name="id" value="org.eclipse.pde.build.container.feature" /> |
| </ant> |
| </target> |
| |
| <!-- ===================================================================== --> |
| <!-- Targets to assemble the built elements for particular configurations --> |
| <!-- These generally call the generated assemble scripts (named in --> |
| <!-- ${assembleScriptName}) but may also add pre and post processing --> |
| <!-- Add one target for each root element and each configuration --> |
| <!-- ===================================================================== --> |
| <target name="assemble.org.eclipse.pde.build.container.feature"> |
| <ant antfile="${assembleScriptName}" dir="${buildDirectory}"> |
| <property name="archiveName" value="${archiveNamePrefix}.zip"/> |
| </ant> |
| </target> |
| |
| <target name="assemble.org.eclipse.pde.build.container.feature.win32.win32.x86"> |
| <ant antfile="${assembleScriptName}" dir="${buildDirectory}"> |
| <property name="archiveName" value="${archiveNamePrefix}-win32.win32.x86.zip"/> |
| </ant> |
| |
| </target> |
| |
| <target name="assemble.org.eclipse.pde.build.container.feature.linux.gtk.ppc"> |
| <ant antfile="${assembleScriptName}" dir="${buildDirectory}"> |
| <property name="archiveName" value="${archiveNamePrefix}-linux.gtk.ppc.zip"/> |
| </ant> |
| </target> |
| |
| <target name="assemble.org.eclipse.pde.build.container.feature.linux.gtk.x86"> |
| <ant antfile="${assembleScriptName}" dir="${buildDirectory}"> |
| <property name="archiveName" value="${archiveNamePrefix}-linux.gtk.x86.zip"/> |
| </ant> |
| </target> |
| |
| <target name="assemble.org.eclipse.pde.build.container.feature.linux.gtk.x86_64"> |
| <ant antfile="${assembleScriptName}" dir="${buildDirectory}"> |
| <property name="archiveName" value="${archiveNamePrefix}-linux.gtk.x86_64.zip"/> |
| </ant> |
| </target> |
| |
| <target name="assemble.org.eclipse.pde.build.container.feature.linux.motif.x86"> |
| <ant antfile="${assembleScriptName}" dir="${buildDirectory}"> |
| <property name="archiveName" value="${archiveNamePrefix}-linux.motif.x86.zip"/> |
| </ant> |
| </target> |
| |
| <target name="assemble.org.eclipse.pde.build.container.feature.solaris.motif.sparc"> |
| <ant antfile="${assembleScriptName}" dir="${buildDirectory}"> |
| <property name="archiveName" value="${archiveNamePrefix}-solaris.motif.sparc.zip"/> |
| </ant> |
| </target> |
| |
| <target name="assemble.org.eclipse.pde.build.container.feature.solaris.gtk.sparc"> |
| <ant antfile="${assembleScriptName}" dir="${buildDirectory}"> |
| <property name="archiveName" value="${archiveNamePrefix}-solaris.gtk.sparc.zip"/> |
| </ant> |
| </target> |
| |
| <target name="assemble.org.eclipse.pde.build.container.feature.aix.motif.ppc"> |
| <ant antfile="${assembleScriptName}" dir="${buildDirectory}"> |
| <property name="archiveName" value="${archiveNamePrefix}-aix.motif.ppc.zip"/> |
| </ant> |
| </target> |
| |
| <target name="assemble.org.eclipse.pde.build.container.feature.hpux.motif.PA_RISC"> |
| <ant antfile="${assembleScriptName}" dir="${buildDirectory}"> |
| <property name="archiveName" value="${archiveNamePrefix}-hpux.motif.PA_RISC.zip"/> |
| </ant> |
| </target> |
| |
| <target name="assemble.org.eclipse.pde.build.container.feature.macosx.carbon.ppc"> |
| <ant antfile="${assembleScriptName}" dir="${buildDirectory}"> |
| <property name="archiveName" value="${archiveNamePrefix}-macosx.carbon.ppc.tar.gz"/> |
| </ant> |
| </target> |
| |
| <target name="assemble.org.eclipse.pde.build.container.feature.macosx.carbon.x86"> |
| <ant antfile="${assembleScriptName}" dir="${buildDirectory}"> |
| <property name="archiveName" value="${archiveNamePrefix}-macosx.carbon.x86.tar.gz"/> |
| </ant> |
| </target> |
| |
| <target name="assemble.org.eclipse.pde.build.container.feature.group.group.group"> |
| <ant antfile="${assembleScriptName}" dir="${buildDirectory}"> |
| <property name="archiveName" value="${archiveNamePrefix}-group.zip"/> |
| </ant> |
| </target> |
| </project> |