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>
|