-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
357 lines (313 loc) · 17.5 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
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
<?xml version="1.0"?>
<!-- Master build file for RomRaider
RomRaider Open-Source Tuning, Logging and Reflashing
Copyright (C) 2006-2012 RomRaider.com
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-->
<project name="romraider" default="help" basedir=".">
<!-- get the environment -->
<property environment="env"/>
<!-- =================================================================== -->
<!-- Help -->
<!-- All externally callable targets should be listed here, along -->
<!-- with common property overrides -->
<!-- =================================================================== -->
<target name="help" depends="-init">
<echo message="help [Print this message ]"/>
<echo message="clean [Clean generated files ]"/>
<echo message="prepare [Create directories for output files ]"/>
<echo message=" [ and generate files from templates ]"/>
<echo message="build [Compile the Java source files ]"/>
<echo message="rebuild [Call the clean and build targets ]"/>
<echo message="javadoc [Generate the API documentation of the ]"/>
<echo message=" [Java source code ]"/>
<echo message="dist [Create the distribution packages ]"/>
<echo message="all [Complete rebuild and packaging ]"/>
</target>
<!-- =================================================================== -->
<!-- Initialization target - only callable internally -->
<!-- =================================================================== -->
<target name="-init" unless="initialized">
<property name="initialized" value="true"/>
<!-- set the various timestamp properties we may need -->
<tstamp>
<format property="time.rfc822" pattern="EEE, dd MMM yyyy HH:mm:ss Z"/>
<format property="time.year" pattern="yyyy"/>
</tstamp>
<!-- set os specific properties -->
<property name="os.windows" value="windows"/>
<property name="ext.windows" value="bat"/>
<property name="os.linux" value="linux"/>
<property name="ext.linux" value="sh"/>
<condition property="os" value="${os.windows}" else="${os.linux}">
<os family="windows"/>
</condition>
<condition property="is.windows">
<equals arg1="${os}" arg2="${os.windows}"/>
</condition>
<property name="izpack.compile.${os.windows}" value="compile.bat"/>
<property name="izpack.compile.${os.linux}" value="compile"/>
<!-- java compiler properties -->
<property name="debug" value="off"/>
<property name="optimize" value="on"/>
<property name="deprecation" value="on"/>
<!-- get the current svn revision (needed by version.properties) - if repository is unavailable, this will be zero -->
<macro_svn_revision repository="https://svn2.assembla.com/svn/romraider" property="svn.revision"/>
<!-- Set the buildnumber to be the revision fetched from the repository, but default to zero for
offline work -->
<condition property="buildnumber" value="${svn.revision}" else="0">
<isset property="svn.revision"/>
</condition>
<!-- version properties are set in this file, both for the product itself and
for some of the external dependencies (jar files and such) -->
<property file="version.properties"/>
<!-- basic project properties -->
<property name="src.dir" value="${basedir}/src"/>
<property name="docs.dir" value="${basedir}/docs"/>
<property name="build.dir" value="${basedir}/build"/>
<property name="template.dir" value="${basedir}/templates"/>
<property name="3rdparty.dir" value="${basedir}/3rdparty"/>
<!-- all generated files should go to somewhere in the build directory -->
<property name="classes.dir" value="${build.dir}/classes"/>
<property name="javadoc.dir" value="${build.dir}/javadoc"/>
<property name="dist.dir" value="${build.dir}/dist"/>
<!-- package naming properties -->
<property name="jar.package" value="${name.package}.jar"/>
<property name="jar.installer-prefix"
value="${name.package}${version.major}.${version.minor}.${version.patch}-${version.buildnumber}"/>
<!-- support tools -->
<!-- creates EXE wrappers around java apps -->
<property name="launch4j.dir" location="${3rdparty.dir}/launch4j"/>
<!-- installer packager -->
<property name="izpack.dir" value="${3rdparty.dir}/IzPack"/>
<!-- define custom tasks -->
<taskdef name="launch4j" classname="net.sf.launch4j.ant.Launch4jTask"
classpath="${launch4j.dir}/launch4j.jar:${launch4j.dir}/lib/xstream.jar"/>
<!-- windows classpath -->
<path id="windows.classpath">
<fileset dir="lib/common" includes="*.jar"/>
<fileset dir="lib/windows" includes="*.jar"/>
</path>
<!-- linux classpath -->
<path id="linux.classpath">
<fileset dir="lib/common" includes="*.jar"/>
<fileset dir="lib/linux" includes="*.jar"/>
</path>
<!-- this set of filters should contain all the substitutions needed -->
<filterset id="version.filterset">
<filter token="warning.generated-file" value="${warning.generated-file}"/>
<filter token="name.package" value="${name.package}"/>
<filter token="description.package" value="${description.package}"/>
<filter token="name.organization" value="${name.organization}"/>
<filter token="name.maintainer" value="${name.maintainer}"/>
<filter token="email.maintainer" value="${email.maintainer}"/>
<filter token="supporturl" value="${supporturl}"/>
<filter token="romrevisionurl" value="${romrevisionurl}"/>
<filter token="ecudefsurl" value="${ecudefsurl}"/>
<filter token="loggerdefsurl" value="${loggerdefsurl}"/>
<filter token="carsdefsurl" value="${carsdefsurl}"/>
<filter token="release_notes" value="${release_notes}"/>
<filter token="version.major" value="${version.major}"/>
<filter token="version.minor" value="${version.minor}"/>
<filter token="version.patch" value="${version.patch}"/>
<filter token="version.buildnumber" value="${version.buildnumber}"/>
<filter token="version.extra" value="${version.extra}"/>
<filter token="version.extra1" value="${version.extra1}"/>
<filter token="jvm.args.win" value="${jvm.args.win}"/>
<filter token="jvm.args.linux" value="${jvm.args.linux}"/>
</filterset>
</target>
<!-- =================================================================== -->
<!-- cleans all generated files -->
<!-- =================================================================== -->
<target name="clean" depends="-init">
<delete dir="${build.dir}" failonerror="false"/>
</target>
<!-- =================================================================== -->
<!-- pre-build preparation -->
<!-- =================================================================== -->
<target name="prepare" depends="-init">
<!-- generate the Version class -->
<copy overwrite="true" tofile="${src.dir}/com/romraider/Version.java"
file="src/com/romraider/Version.java.template">
<filterset refid="version.filterset"/>
</copy>
</target>
<!-- =================================================================== -->
<!-- complete rebuild -->
<!-- =================================================================== -->
<target name="rebuild" depends="clean, build"/>
<!-- =================================================================== -->
<!-- Compiles the source directory -->
<!-- =================================================================== -->
<target name="build" depends="prepare">
<macro_compile os="${os.windows}"/>
<macro_jar os="${os.windows}"/>
<macro_jar os="${os.linux}"/>
</target>
<!-- ================================================================== -->
<!-- generate javadoc -->
<!-- ================================================================== -->
<target name="javadoc" depends="-init">
<delete quiet="true" dir="${javadoc.dir}"/>
<mkdir dir="${javadoc.dir}"/>
<javadoc windowtitle="${name.package}" header="${javadoc.header}" sourcepath="${src.dir}" author="yes"
version="yes" destdir="${javadoc.dir}"
breakiterator="yes" maxmemory="96m">
<packageset dir="src">
<include name="**"/>
</packageset>
<bottom>${javadoc.footer}</bottom>
<classpath refid="${os.windows}.classpath"/>
</javadoc>
</target>
<!-- =================================================================== -->
<!-- create distribution -->
<!-- =================================================================== -->
<target name="dist" depends="-init">
<delete dir="${dist.dir}" failonerror="false"/>
<mkdir dir="${dist.dir}/windows"/>
<mkdir dir="${dist.dir}/linux"/>
<!-- generate installer scripts from templates -->
<copy overwrite="true" tofile="${dist.dir}/install-windows.xml"
file="${template.dir}/install-windows.xml.template">
<filterset refid="version.filterset"/>
</copy>
<copy overwrite="true" tofile="${dist.dir}/install-linux.xml" file="${template.dir}/install-linux.xml.template">
<filterset refid="version.filterset"/>
</copy>
<copy overwrite="true" tofile="${dist.dir}/shortcutSpec-windows.xml"
file="${template.dir}/shortcutSpec-windows.xml.template">
<filterset refid="version.filterset"/>
</copy>
<copy overwrite="true" tofile="${dist.dir}/shortcutSpec-linux.xml"
file="${template.dir}/shortcutSpec-linux.xml.template">
<filterset refid="version.filterset"/>
</copy>
<!-- generate the launch4j scripts from templates -->
<copy overwrite="true" tofile="${dist.dir}/l4j-installer.xml" file="${template.dir}/l4j-installer.xml.template">
<filterset refid="version.filterset"/>
</copy>
<copy overwrite="true" tofile="${dist.dir}/l4j-package.xml" file="${template.dir}/l4j-package.xml.template">
<filterset refid="version.filterset"/>
</copy>
<macro_generate_executables/>
<macro_standalone os="${os.windows}"/>
<macro_standalone os="${os.linux}"/>
</target>
<!-- =================================================================== -->
<!-- all -->
<!-- =================================================================== -->
<target name="all" depends="rebuild, dist"/>
<!-- =================================================================== -->
<!-- Macros -->
<!-- =================================================================== -->
<macrodef name="macro_svn_revision">
<attribute name="revision" default="HEAD"/>
<attribute name="repository"/>
<attribute name="property"/>
<sequential>
<tempfile property="svninfo.log"/>
<exec executable="svn" output="${svninfo.log}" failonerror="false">
<arg line="info @{repository}"/>
</exec>
<loadfile property="@{property}" srcFile="${svninfo.log}">
<filterchain>
<linecontainsregexp>
<regexp pattern="Last Changed Rev: "/>
</linecontainsregexp>
<deletecharacters chars="Last Changed Rev: "/>
<striplinebreaks/>
</filterchain>
</loadfile>
<delete file="${svninfo.log}"/>
</sequential>
</macrodef>
<macrodef name="macro_generate_executables">
<sequential>
<!-- create the exe launcher of the package for Windows -->
<antcall target="-launch4j">
<param name="type" value="package"/>
</antcall>
<!-- generate the installers -->
<macro_izpack_compile os="${os}" target.os="${os.windows}"/>
<macro_izpack_compile os="${os}" target.os="${os.linux}"/>
<!-- create the exe launcher of the installer for Windows -->
<antcall target="-launch4j">
<param name="type" value="installer"/>
</antcall>
</sequential>
</macrodef>
<target name="-launch4j" if="is.windows">
<launch4j configFile="${dist.dir}/l4j-${type}.xml"/>
</target>
<macrodef name="macro_izpack_compile">
<attribute name="os"/>
<attribute name="target.os"/>
<sequential>
<chmod file="${izpack.dir}/bin/${izpack.compile.@{os}}" perm="+x" osfamily="unix"/>
<exec executable="${izpack.dir}/bin/${izpack.compile.@{os}}">
<arg line="${dist.dir}/install-@{target.os}.xml -b . -o ${dist.dir}/@{target.os}/${jar.installer-prefix}-@{target.os}.jar -k standard"/>
</exec>
</sequential>
</macrodef>
<macrodef name="macro_jar">
<attribute name="os"/>
<sequential>
<mkdir dir="${build.dir}/@{os}/lib"/>
<manifestclasspath property="@{os}.jar.classpath" jarfile="${jar.package}">
<classpath>
<fileset dir="lib/common" includes="*.jar"/>
<fileset dir="lib/@{os}" includes="*.jar"/>
</classpath>
</manifestclasspath>
<manifest file="${build.dir}/@{os}/MANIFEST.MF">
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Main-Class" value="${class.start}"/>
<attribute name="Class-Path" value="${@{os}.jar.classpath}"/>
</manifest>
<jar basedir="${classes.dir}" destfile="${build.dir}/@{os}/lib/${jar.package}"
manifest="${build.dir}/@{os}/MANIFEST.MF"/>
</sequential>
</macrodef>
<macrodef name="macro_compile">
<attribute name="os"/>
<sequential>
<mkdir dir="${classes.dir}"/>
<javac failonerror="true" srcdir="${src.dir}" destdir="${classes.dir}" target="1.5">
<classpath refid="@{os}.classpath"/>
</javac>
</sequential>
</macrodef>
<macrodef name="macro_standalone">
<attribute name="os"/>
<sequential>
<zip destfile="${dist.dir}/@{os}/${name.package}${version.major}.${version.minor}.${version.patch}${version.extra}${version.extra1}-@{os}.zip">
<zipfileset file="build/@{os}/lib/${jar.package}" prefix="${name.package}"/>
<zipfileset file="run.${ext.@{os}}" prefix="${name.package}" filemode="755"/>
<zipfileset file="license.txt" prefix="${name.package}"/>
<zipfileset file="release_notes.txt" prefix="${name.package}"/>
<zipfileset file="log4j.properties" prefix="${name.package}"/>
<zipfileset file="cars_def.dtd" prefix="${name.package}"/>
<zipfileset file="ecu_defs.dtd" prefix="${name.package}"/>
<zipfileset file="logger.dtd" prefix="${name.package}"/>
<zipfileset file="profile.dtd" prefix="${name.package}"/>
<zipfileset dir="graphics" prefix="${name.package}/graphics" excludes="*.bmp"/>
<zipfileset dir="plugins" prefix="${name.package}/plugins"/>
<zipfileset dir="lib/common" prefix="${name.package}/lib/common"/>
<zipfileset dir="lib/@{os}" prefix="${name.package}/lib/@{os}"/>
<zipfileset dir="src" prefix="${name.package}/src" excludes="**/*.template"/>
</zip>
</sequential>
</macrodef>
</project>