forked from prelz/BLAH
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
executable file
·97 lines (76 loc) · 3.32 KB
/
build.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Copyright (c) 2004 on behalf of the EU EGEE Project:
The European Organization for Nuclear Research (CERN),
Istituto Nazionale di Fisica Nucleare (INFN), Italy
Datamat Spa, Italy
Centre National de la Recherche Scientifique (CNRS), France
CS Systeme d'Information (CSSI), France
Royal Institute of Technology, Center for Parallel Computers (KTH-PDC), Sweden
Universiteit van Amsterdam (UvA), Netherlands
University of Helsinki (UH.HIP), Finland
University of Bergen (UiB), Norway
Council for the Central Laboratory of the Research Councils (CCLRC), United Kingdom
Build file for the GLite ce blahp component
Basic build files for blahp
-->
<project name="blahp" default="dist">
<!-- ==============================================
Builds the GLite wms checkpointing component
============================================== -->
<!-- =========================================
Import properties (order is important)
========================================= -->
<!-- Import baseline properties & user properties -->
<import file="../org.glite/project/baseline.properties.xml" />
<!-- import component build properties,
component properties &
component common properties -->
<import file="./project/properties.xml"/>
<!-- import subsystem build properties,
subsystem properties &
subsystem common properties -->
<import file="${subsystem.properties.file}"/>
<!-- import global build properties &
global properties -->
<import file="${global.properties.file}" />
<!-- =========================================
Load dependency property files (order is important)
========================================= -->
<property file="${user.dependencies.file}"/>
<property file="${component.dependencies.file}" />
<property file="${subsystem.dependencies.file}" />
<property file="${global.dependencies.file}"/>
<!-- =========================================
Import task definitions (order is important)
========================================= -->
<!-- import file="${subsystem.taskdefs.file}" / -->
<import file="${global.taskdefs.file}" />
<!-- =========================================
Load configure options
========================================= -->
<property file="${global.configure.options.file}"/>
<import file="${component.configure.options.file}"/>
<!-- =========================================
Load common targets
========================================= -->
<!-- import file="${global.targets-external-dependencies.file}"/ -->
<import file="${global.targets-make.file}" />
<!-- =========================================
Load version file
========================================= -->
<property file="${module.version.file}"/>
<property file="${module.build.file}"/>
<!-- ==============================================
Local private targets
============================================== -->
<target name="localinit"
description="Module specific initialization tasks">
</target>
<target name="localcompile"
description="Module specific compile tasks">
</target>
<target name="localclean"
description="Module specific cleaning tasks">
</target>
</project>