* roottypes.cs: Rename from tree.cs.
[mono.git] / web / web / masterinfos / Makefile
1 # Note that you will need Microsoft.NET to generate those masterinfos
2
3 # Customize to indicate your own installation dir.
4 DLL_PATH=c:/WINDOWS/Microsoft.NET/Framework/v1.1.4322
5 # DLL_PATH=c:/WINDOWS/Microsoft.NET/Framework/v1.2.30703
6
7 all: \
8         mscorlib.xml \
9         System.xml \
10         System.Xml.xml \
11         System.Configuration.Install.xml \
12         System.Data.xml \
13         System.Data.OracleClient.xml \
14         System.Design.xml \
15         System.Management.xml \
16         System.Messaging.xml \
17         System.Web.xml \
18         System.Web.Services.xml \
19         System.Runtime.Serialization.Formatters.Soap.xml \
20         System.Drawing.xml \
21         System.Drawing.Design.xml \
22         System.Security.xml \
23         System.DirectoryServices.xml \
24         System.EnterpriseServices.xml \
25         System.Runtime.Remoting.xml \
26         System.Windows.Forms.xml \
27         Microsoft.VisualBasic.xml \
28         Cscompmgd.xml
29
30 mscorlib.xml :
31         mono-api-info $(DLL_PATH)/mscorlib.dll > mscorlib.xml
32
33 System.xml :
34         mono-api-info $(DLL_PATH)/System.dll > System.xml
35
36 System.Xml.xml :
37         mono-api-info $(DLL_PATH)/System.Xml.dll > System.Xml.xml
38
39 System.Configuration.Install.xml :
40         mono-api-info $(DLL_PATH)/System.Configuration.Install.dll > System.Configuration.Install.xml
41
42 System.Data.xml :
43         mono-api-info $(DLL_PATH)/System.Data.dll > System.Data.xml
44
45 System.Data.OracleClient.xml :
46         mono-api-info $(DLL_PATH)/System.Data.OracleClient.dll > System.Data.OracleClient.xml
47
48 System.Design.xml :
49         mono-api-info $(DLL_PATH)/System.Design.dll > System.Design.xml
50
51 System.Management.xml :
52         mono-api-info $(DLL_PATH)/System.Management.dll > System.Management.xml
53
54 System.Messaging.xml :
55         mono-api-info $(DLL_PATH)/System.Messaging.dll > System.Messaging.xml
56
57 System.Web.xml :
58         mono-api-info $(DLL_PATH)/System.Web.dll > System.Web.xml
59
60 System.Web.Services.xml :
61         mono-api-info $(DLL_PATH)/System.Web.Services.dll > System.Web.Services.xml
62
63 System.Runtime.Remoting.xml :
64         mono-api-info $(DLL_PATH)/System.Runtime.Remoting.dll > System.Runtime.Remoting.xml
65
66 System.Runtime.Serialization.Formatters.Soap.xml :
67         mono-api-info $(DLL_PATH)/System.Runtime.Serialization.Formatters.Soap.dll > System.Runtime.Serialization.Formatters.Soap.xml
68
69 System.Drawing.xml :
70         mono-api-info $(DLL_PATH)/System.Drawing.dll > System.Drawing.xml
71
72 System.Drawing.Design.xml :
73         mono-api-info $(DLL_PATH)/System.Drawing.Design.dll > System.Drawing.Design.xml
74
75 System.Security.xml :
76         mono-api-info $(DLL_PATH)/System.Security.dll > System.Security.xml
77
78 System.DirectoryServices.xml :
79         mono-api-info $(DLL_PATH)/System.DirectoryServices.dll > System.DirectoryServices.xml
80
81 System.EnterpriseServices.xml :
82         mono-api-info $(DLL_PATH)/System.EnterpriseServices.dll > System.EnterpriseServices.xml
83
84 System.Windows.Forms.xml :
85         mono-api-info $(DLL_PATH)/System.Windows.Forms.dll > System.Windows.Forms.xml
86
87 Cscompmgd.xml :
88         mono-api-info $(DLL_PATH)/Cscompmgd.dll > Cscompmgd.xml
89
90 Microsoft.VisualBasic.xml :
91         mono-api-info $(DLL_PATH)/Microsoft.VisualBasic.dll > Microsoft.VisualBasic.xml
92
93 clean:
94         rm mscorlib.xml System.xml System.Xml.xml System.Configuration.Install.xml System.Data.xml System.Data.OracleClient.xml System.Design.xml System.Drawing.Design.xml System.Management.xml System.Messaging.xml System.Web.xml System.Web.Services.xml System.Runtime.Serialization.Formatters.Soap.xml System.Drawing.xml System.Security.xml System.DirectoryServices.xml System.EnterpriseServices.xml System.Runtime.Remoting.xml System.Windows.Forms.xml Cscompmgd.xml Microsoft.VisualBasic.xml
95
96