You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.xml 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0"?>
  2. <project name="aspectj" basedir="." default="all">
  3. <!-- a root build.xml that redirects to build/build-master.xml for convenience so that ones can type
  4. "ant .." straight in the modules/ root -->
  5. <target name="patch">
  6. <cvs output="patch">
  7. <commandline>
  8. <argument line="-q diff -u -N"/>
  9. </commandline>
  10. </cvs>
  11. </target>
  12. <target name="clean">
  13. <subant target="clean">
  14. <fileset dir="." includes="build/build-master.xml"/>
  15. </subant>
  16. </target>
  17. <target name="cleanall">
  18. <subant target="cleanall">
  19. <fileset dir="." includes="build/build-master.xml"/>
  20. </subant>
  21. </target>
  22. <target name="all">
  23. <subant target="all">
  24. <fileset dir="." includes="build/build-master.xml"/>
  25. </subant>
  26. </target>
  27. <target name="compile">
  28. <subant target="compile">
  29. <fileset dir="." includes="build/build-master.xml"/>
  30. </subant>
  31. </target>
  32. <target name="test">
  33. <subant target="test">
  34. <fileset dir="." includes="build/build-master.xml"/>
  35. </subant>
  36. </target>
  37. <target name="jar">
  38. <subant target="jar">
  39. <fileset dir="." includes="build/build-master.xml"/>
  40. </subant>
  41. </target>
  42. </project>