| 5 | | <target name="create-components"> |
|---|
| 6 | | <antcall target="create-core-component" /> |
|---|
| 7 | | <antcall target="create-imagemagick-component" /> |
|---|
| 8 | | <antcall target="create-ghostscript-component" /> |
|---|
| 9 | | <antcall target="create-sourcecode-component" /> |
|---|
| 10 | | <antcall target="create-ant-component" /> |
|---|
| 11 | | <antcall target="create-tomcat-component" /> |
|---|
| | 11 | <target name="prepare-components"> |
|---|
| | 12 | <antcall target="prepare-core-component" /> |
|---|
| | 13 | <antcall target="prepare-imagemagick-component" /> |
|---|
| | 14 | <antcall target="prepare-ghostscript-component" /> |
|---|
| | 15 | <antcall target="prepare-sourcecode-component" /> |
|---|
| | 16 | <antcall target="prepare-ant-component" /> |
|---|
| | 17 | <antcall target="prepare-tomcat-component" /> |
|---|
| | 18 | </target> |
|---|
| | 19 | |
|---|
| | 20 | <target name="compress-components"> |
|---|
| | 21 | <antcall target="compress-core-component" /> |
|---|
| | 22 | <antcall target="compress-imagemagick-component" /> |
|---|
| | 23 | <antcall target="compress-ghostscript-component" /> |
|---|
| | 24 | <antcall target="compress-sourcecode-component" /> |
|---|
| | 25 | <antcall target="compress-ant-component" /> |
|---|
| | 26 | <antcall target="compress-tomcat-component" /> |
|---|
| 15 | | <target name="create-core-component"> |
|---|
| 16 | | <antcall target="prepare-core-component" /> |
|---|
| 17 | | <antcall target="compress-core-component" /> |
|---|
| 18 | | </target> |
|---|
| 19 | | |
|---|
| 20 | | <target name="create-imagemagick-component"> |
|---|
| 21 | | <antcall target="prepare-imagemagick-component" /> |
|---|
| 22 | | <antcall target="compress-imagemagick-component" /> |
|---|
| 23 | | </target> |
|---|
| 24 | | |
|---|
| 25 | | |
|---|
| 26 | | <target name="create-ghostscript-component"> |
|---|
| 27 | | <antcall target="prepare-ghostscript-component" /> |
|---|
| 28 | | <antcall target="compress-ghostscript-component" /> |
|---|
| 29 | | </target> |
|---|
| 30 | | |
|---|
| 31 | | |
|---|
| 32 | | <target name="create-sourcecode-component"> |
|---|
| 33 | | <antcall target="prepare-sourcecode-component" /> |
|---|
| 34 | | <antcall target="compress-sourcecode-component" /> |
|---|
| 35 | | </target> |
|---|
| 36 | | |
|---|
| 37 | | |
|---|
| 38 | | <target name="create-ant-component"> |
|---|
| 39 | | <antcall target="prepare-ant-component" /> |
|---|
| 40 | | <antcall target="compress-ant-component" /> |
|---|
| 41 | | </target> |
|---|
| 42 | | |
|---|
| 43 | | |
|---|
| 44 | | <target name="create-tomcat-component"> |
|---|
| 45 | | <antcall target="prepare-tomcat-component" /> |
|---|
| 46 | | <antcall target="compress-tomcat-component" /> |
|---|
| 47 | | </target> |
|---|