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.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0"?>
  2. <project name="loadtime" default="all" basedir=".">
  3. <import file="../build-common.xml"/>
  4. <import file="../asm/build.xml"/>
  5. <import file="../bridge/build.xml"/>
  6. <import file="../util/build.xml"/>
  7. <import file="../weaver/build.xml"/>
  8. <path id="loadtime.test.src.path">
  9. <fileset dir="${basedir}/../lib">
  10. <include name="junit/*.jar"/>
  11. </fileset>
  12. <path refid="loadtime.src.path"/>
  13. </path>
  14. <path id="loadtime.src.path">
  15. <pathelement path="../asm/bin"/>
  16. <pathelement path="../bridge/bin"/>
  17. <pathelement path="../util/bin"/>
  18. <pathelement path="../weaver/bin"/>
  19. <fileset dir="${basedir}/../lib">
  20. <include name="bcel/*.jar"/>
  21. </fileset>
  22. </path>
  23. <target name="compile" depends="init,
  24. asm.compile,
  25. bridge.compile,
  26. util.compile,
  27. weaver.compile">
  28. <srccompile project="loadtime" path="loadtime.src.path"/>
  29. </target>
  30. <target name="test:compile" depends="compile">
  31. </target>
  32. <target name="test" depends="test:compile">
  33. </target>
  34. <target name="jar" depends="compile">
  35. <delete file="${build.ajdir}/jars/loadtime.jar"/>
  36. <jar destfile="${build.ajdir}/jars/loadtime.jar">
  37. <fileset dir="bin">
  38. <include name="**/*"/>
  39. </fileset>
  40. </jar>
  41. </target>
  42. </project>