aboutsummaryrefslogtreecommitdiff
path: root/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/packager/customTargets.xml
blob: eac9576f2bf5745484700d57b6c91e64bf4783c1 (plain)
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
<project name="Custom Targets MyTest" default="noDefault">

	<target name="noDefault" />
		
	<!-- This goal of this target is to get the packaging map files of the things you care for 
	       The files must be fetched into the downloadDirectory folder -->
	<target name="getMapFiles" unless="localMaps">
		<get src="${packagerMapURL}" dest="${downloadDirectory}/initial.map" usetimestamp="true"/>
	</target>
	
	<target name="init">
		<property name="archiveNamePrefix" value="${buildId}"/>
	</target>
	
	<target name="assemble.win32.win32.x86.xml" depends="init">
		<ant antfile="${assembleScriptName}" >
			<property name="archiveName" value="${archiveNamePrefix}-win32.win32.win32.zip"/>
		</ant>
	</target>
	
	<target name="assemble.linux.gtk.x86.xml">
		<ant antfile="${assembleScriptName}" >
			<property name="archiveName" value="${archiveNamePrefix}-linux.gtk.x86.zip"/>
		</ant>
	</target>
	
	<target name="assemble.linux.gtk.ppc.xml">
		<ant antfile="${assembleScriptName}" >
			<property name="archiveName" value="${archiveNamePrefix}-linux.gtk.ppc.zip"/>
		</ant>
	</target>

	<target name="assemble.linux.gtk.x86_64.xml">
		<ant antfile="${assembleScriptName}" >
			<property name="archiveName" value="${archiveNamePrefix}-linux.gtk.x86_64.zip"/>
		</ant>
	</target>
		
	<target name="assemble.linux.motif.x86.xml">
		<ant antfile="${assembleScriptName}" >
			<property name="archiveName" value="${archiveNamePrefix}-linux.motif.x86.zip"/>
		</ant>
	</target>
	
	<target name="assemble.solaris.motif.sparc.xml">
		<ant antfile="${assembleScriptName}" >
			<property name="archiveName" value="${archiveNamePrefix}-solaris.motif.sparc.zip"/>
		</ant>
	</target>

	<target name="assemble.solaris.gtk.sparc.xml">
		<ant antfile="${assembleScriptName}" >
			<property name="archiveName" value="${archiveNamePrefix}-solaris.gtk.sparc.zip"/>
		</ant>
	</target>
	
	<target name="assemble.aix.motif.ppc.xml">
		<ant antfile="${assembleScriptName}" >
			<property name="archiveName" value="${archiveNamePrefix}-aix.motif.ppc.zip"/>
		</ant>
	</target>
	
	<target name="assemble.hpux.motif.PA_RISC.xml">
		<ant antfile="${assembleScriptName}" >
			<property name="archiveName" value="${archiveNamePrefix}-hpux.motif.PA_RISC.zip"/>
		</ant>
	</target>
	
	<target name="assemble.macosx.carbon.ppc.xml">
		<ant antfile="${assembleScriptName}" >
			<property name="archiveName" value="${archiveNamePrefix}-macosx.carbon.ppc.zip"/>
		</ant>
	</target>
	
	<target name="assemble.macosx.carbon.x86.xml">
		<ant antfile="${assembleScriptName}" >
			<property name="archiveName" value="${archiveNamePrefix}-macosx.carbon.x86.zip"/>
		</ant>
	</target>

</project>