Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 494a7eb38c40466f96c9b3d33923c6401e42d543 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<project name="Build specific targets and properties" default="noDefault" >

<!-- ===================================================================== -->
<!-- Run a given ${target} on all elements being built -->
<!-- Add on <ant> task for each top level element being built. -->
<!-- ===================================================================== -->
<target name="allElements">
	<ant antfile="${genericTargets}" target="${target}" >
		<property name="type" value="feature" />
		<property name="id" value="org.eclipse.cdt" />
	</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.cdt.aix.motif.ppc">
	<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
		<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-aix.ppc.tar.gz"/>
	</ant>
</target>

<target name="assemble.org.eclipse.cdt.linux.gtk.x86">
	<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
		<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-linux.x86.tar.gz"/>
	</ant>
</target>

<target name="assemble.org.eclipse.cdt.linux.gtk.x86_64">
	<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
		<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-linux.x86_64.tar.gz"/>
	</ant>
</target>

<target name="assemble.org.eclipse.cdt.linux.gtk.ppc">
	<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
		<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-linux.ppc.tar.gz"/>
	</ant>
</target>

<target name="assemble.org.eclipse.cdt.linux.gtk.ia64">
	<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
		<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-linux.ia64.tar.gz"/>
	</ant>
</target>

<target name="assemble.org.eclipse.cdt.macosx.carbon.ppc">
	<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
		<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-macosx.ppc.tar.gz"/>
	</ant>
</target>

<target name="assemble.org.eclipse.cdt.qnx.photon.x86">
	<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
		<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-qnx.x86.tar.gz"/>
	</ant>
</target>

<target name="assemble.org.eclipse.cdt.solaris.motif.sparc">
	<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
		<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-solaris.sparc.tar.gz"/>
	</ant>
</target>

<target name="assemble.org.eclipse.cdt.win32.win32.x86">
	<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
		<property name="archiveName" value="org.eclipse.cdt-${branchVersion}-${buildId}-win32.x86.zip"/>
	</ant>
	<exec executable="zip" dir="${buildDirectory}">
		<arg line="-r -q ${buildDirectory}/${buildLabel}/org.eclipse.cdt-${branchVersion}-${buildId}-win32.x86.zip"/>
		<arg line="epl-v10.html"/>
		<arg line="notice.html"/>
	</exec>
</target>

<!-- ===================================================================== -->
<!-- Check out map files from correct repository -->
<!-- Replace values for cvsRoot, package and mapVersionTag as desired. -->
<!-- ===================================================================== -->
<target name="getMapFiles">
	<copy file="${builder}/../maps/cdt.map" todir="${buildDirectory}/maps"/>
	<replace file="${buildDirectory}/maps/cdt.map">
		<replacefilter token="@cdtTag@" value="${cdtTag}"/>
	</replace>
</target>

<!-- ===================================================================== -->
<!-- Steps to do before setup -->
<!-- ===================================================================== -->
<target name="preSetup">
</target>

<!-- ===================================================================== -->
<!-- Steps to do after setup but before starting the build proper -->
<!-- ===================================================================== -->
<target name="postSetup">
</target>

<!-- ===================================================================== -->
<!-- Steps to do before fetching the build elements -->
<!-- ===================================================================== -->
<target name="preFetch">
</target>

<!-- ===================================================================== -->
<!-- Steps to do after fetching the build elements -->
<!-- ===================================================================== -->
<target name="postFetch">
	<condition property="patchesAvailable">
		<available file="${builder}/patch.xml"/>
	</condition>
	<antcall target="applyPatches"/>
</target>

<target name="applyPatches" if="patchesAvailable">
	<ant antfile="${builder}/patch.xml"/>
</target>

<!-- ===================================================================== -->
<!-- Steps to do before generating the build scripts. -->
<!-- ===================================================================== -->
<target name="preGenerate">
</target>

<!-- ===================================================================== -->
<!-- Steps to do after generating the build scripts. -->
<!-- ===================================================================== -->
<target name="postGenerate">
</target>


<!-- ===================================================================== -->
<!-- Steps to do before running the build.xmls for the elements being built. -->
<!-- ===================================================================== -->
<target name="preProcess">
	<replace dir="${buildDirectory}/plugins" value="${timestamp}" token="@build@">
		<include name="**/about.mappings" />
	</replace>
</target>

<!-- ===================================================================== -->
<!-- Steps to do after running the build.xmls for the elements being built. -->
<!-- ===================================================================== -->
<target name="postProcess">
</target>


<!-- ===================================================================== -->
<!-- Steps to do before running assemble. -->
<!-- ===================================================================== -->
<target name="preAssemble">
</target>

<!-- ===================================================================== -->
<!-- Steps to do after  running assemble. -->
<!-- ===================================================================== -->
<target name="postAssemble">
</target>

<!-- ===================================================================== -->
<!-- Steps to do after the build is done. -->
<!-- ===================================================================== -->
<target name="postBuild">
</target>

<!-- ===================================================================== -->
<!-- Steps to do to test the build results -->
<!-- ===================================================================== -->
<target name="test">
</target>

<!-- ===================================================================== -->
<!-- Steps to do to publish the build results -->
<!-- ===================================================================== -->
<target name="publish">
</target>

<!-- ===================================================================== -->
<!-- Default target                                                        -->
<!-- ===================================================================== -->
<target name="noDefault">
	<echo message="You must specify a target when invoking this file" />
</target>

</project>

Back to the top