summaryrefslogtreecommitdiffstats
path: root/build.xml
blob: 0fe7704b43903f5bfbd7477586ba32e6cc2a2e9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0"?>
<project name="nbb" default="check">
    <description>
        Ant adaptor for the nbb Automake/Makefile based build system.
    </description>

	   <target name="check" description="run nbb checks">
	        <exec executable="git-amb">
	            <arg value="make"/>
	            <arg value="check"/>
	            <arg value="TESTSUITEFLAGS=-e -v"/>
	        </exec>
	    </target>
	   <target name="make" description="build nbb">
	        <exec executable="git-amb">
	            <arg value="make"/>
	        </exec>
       </target>
	   <target name="install" description="build and install nbb">
	        <exec executable="git-amb">
	        	<arg value="make"/>	            
	        	<arg value="install"/>
	        </exec>
	    </target>
	    <target name="distcheck" description="run nbb distcheck">
		        <exec executable="git-amb">
		            <arg value="make"/>
		        	<arg value="distcheck"/>
		        </exec>
		</target>
</project>