| Line | |
|---|
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 | <!DOCTYPE project PUBLIC "-//ANT//DTD project//EN" "ant.dtd"> |
|---|
| 3 | <!-- ant.dtd is generated by target dtd. This is not done automatically. |
|---|
| 4 | If any problems arise either regenerate ant.dtd by invoking ant dtd |
|---|
| 5 | or delete the DOCTYPE definition --> |
|---|
| 6 | |
|---|
| 7 | <project name="myproject" default="all" basedir="."> |
|---|
| 8 | |
|---|
| 9 | <import file="build-skel.xml" optional="false"/> |
|---|
| 10 | |
|---|
| 11 | <target name="pre-compile" depends="skel.pre-compile"> |
|---|
| 12 | <echo message="Extend the pre-compile target with your own definitions here..."/> |
|---|
| 13 | </target> |
|---|
| 14 | |
|---|
| 15 | <target name="post-compile" depends="skel.post-compile"> |
|---|
| 16 | <echo message="Extend the post-compile target with your own definitions here..."/> |
|---|
| 17 | </target> |
|---|
| 18 | |
|---|
| 19 | <target name="clean" depends="skel.clean"> |
|---|
| 20 | <echo message="Extend the clean target with your own definitions here..."/> |
|---|
| 21 | </target> |
|---|
| 22 | |
|---|
| 23 | </project> |
|---|