File: build.xml

package info (click to toggle)
alter-sequence-alignment 1.3.3%2Bdfsg-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 1,132 kB
  • sloc: java: 6,623; xml: 60; makefile: 5; sh: 2
file content (15 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="UTF-8"?>
<project name="ALTER" default="buildlib" basedir="."> 

  <target name="buildlib">
    <ant antfile="build.xml" dir="./alter-lib" inheritAll="false"/>   
  </target>
  
  <target name="buildall" depends="clean, buildlib">
    <ant antfile="build.xml" dir="./web" inheritAll="false"/>   
  </target>
  <target name="clean">
    <ant antfile="build.xml" dir="./alter-lib" target="clean" inheritAll="false"/>   
  </target>
  
</project>