-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
46 lines (37 loc) · 1.49 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
<?xml version="1.0" encoding="UTF-8"?>
<project name="Streams" default="dist">
<!-- ============================================ -->
<!-- Target: prepare -->
<!-- ============================================ -->
<target name="prepare">
<echo msg="Deleting directory ./build"/>
<delete dir="build"/>
<echo msg="Making directory ./build"/>
<mkdir dir="./build"/>
</target>
<!-- ============================================ -->
<!-- Target: build -->
<!-- ============================================ -->
<target name="build" depends="prepare">
<echo msg="Copying files to build directory..."/>
<echo msg="Copying ./ to ./build directory..."/>
<copy todir="./build">
<fileset dir="./">
<include name="**"/>
<exclude name=".git/"/>
</fileset>
</copy>
</target>
<!-- ============================================ -->
<!-- (DEFAULT) Target: dist -->
<!-- ============================================ -->
<target name="dist" depends="build">
<echo msg="Creating archive..."/>
<tar destfile="./build/build.tar.gz" compression="gzip">
<fileset dir="./build">
<include name="*"/>
</fileset>
</tar>
<echo msg="Files copied and compressed in build directory OK!"/>
</target>
</project>