4dac0df52d34af4b970072c9e80fa18f993d48ec
[mono.git] / mcs / class / library.build
1 <?xml version="1.0" encoding="iso-8859-1"?>
2
3 <!-- NAnt build file for class libraries -->
4 <!-- Target windows builds libraries _for_ windows -->
5 <!-- Target linux builds libraries _for_ linux -->
6
7 <project name="corlib" default="build">
8         <property name="debug" value="false"/>
9
10         <target name="build">
11                 <nant basedir="corlib" target="build"/>
12                 <nant basedir="System" target="build"/>
13                 <nant basedir="System.Drawing" target="build"/>
14                 <nant basedir="System.XML" target="build"/>
15                 <nant basedir="System.Data" target="build"/>
16                 <nant basedir="System.Web" target="build"/>
17                 <nant basedir="System.Web.Services" target="build"/>
18                 <nant basedir="Microsoft.VisualBasic" target="build"/>
19                 <nant basedir="System.Configuration.Install" target="build"/>
20         </target>
21
22         <target name="test">
23                 <nant basedir="corlib" target="test"/>
24                 <nant basedir="System" target="test"/>
25                 <nant basedir="System.XML" target="test"/>
26                 <nant basedir="System.Data" target="test"/>
27                 <nant basedir="Microsoft.VisualBasic" target="test"/>
28                 <nant basedir="System.Configuration.Install" target="test"/>
29         </target>
30
31         <target name="clean">
32                 <delete failonerror="false">
33                         <fileset basedir="lib">
34                                 <includes name="*.dll"/>
35                         </fileset>
36                 </delete>
37                 <nant basedir="corlib" target="clean"/>
38                 <nant basedir="System" target="clean"/>
39                 <nant basedir="System.Drawing" target="clean"/>
40                 <nant basedir="System.XML" target="clean"/>
41                 <nant basedir="System.Data" target="clean"/>
42                 <nant basedir="Microsoft.VisualBasic" target="clean"/>
43                 <nant basedir="System.Configuration.Install" target="clean"/>
44         </target>
45 </project>