File: build.xml

package info (click to toggle)
proguard 6.2.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 8,712 kB
  • sloc: java: 97,785; xml: 1,015; sh: 256; makefile: 91
file content (45 lines) | stat: -rw-r--r-- 829 bytes parent folder | download | duplicates (3)
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
<!-- Ant build script for ProGuard. -->

<project name    = "proguard"
         default = "all"
         basedir = "..">

  <target name = "clean">
    <delete quiet = "true">
      <fileset dir      = "lib"
               includes = "*.jar"/>
    </delete>
  </target>

  <target name    = "all"
          depends = "core,retrace,gui,gradle,ant,wtk,annotations"/>

  <target name = "core">
    <ant dir = "core"/>
  </target>

  <target name = "retrace">
    <ant dir = "retrace"/>
  </target>

  <target name = "gui">
    <ant dir = "gui"/>
  </target>

  <target name = "gradle">
    <ant dir = "gradle"/>
  </target>

  <target name = "ant">
    <ant dir = "ant"/>
  </target>

  <target name = "wtk">
    <ant dir = "wtk"/>
  </target>

  <target name = "annotations">
    <ant dir = "annotations"/>
  </target>

</project>