2004-01-16 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / doc / 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
6 all: \
7         mscorlib.xml \
8         System.xml \
9         System.Xml.xml \
10         System.Data.xml \
11         System.Web.xml \
12         System.Web.Services.xml \
13         System.Runtime.Serialization.Formatters.Soap.xml \
14         System.Drawing.xml \
15         System.Security.xml \
16         System.DirectoryServices.xml \
17         System.Windows.Forms.xml \
18         Cscompmgd.xml
19
20 mscorlib.xml :
21         mono-api-info $(DLL_PATH)/mscorlib.dll > mscorlib.xml
22
23 System.xml :
24         mono-api-info $(DLL_PATH)/System.dll > System.xml
25
26 System.Xml.xml :
27         mono-api-info $(DLL_PATH)/System.Xml.dll > System.Xml.xml
28
29 System.Data.xml :
30         mono-api-info $(DLL_PATH)/System.Data.dll > System.Data.xml
31
32 System.Web.xml :
33         mono-api-info $(DLL_PATH)/System.Web.dll > System.Web.xml
34
35 System.Web.Services.xml :
36         mono-api-info $(DLL_PATH)/System.Web.Services.dll > System.Web.Services.xml
37
38 System.Runtime.Serialization.Formatters.Soap.xml :
39         mono-api-info $(DLL_PATH)/System.Runtime.Serialization.Formatters.Soap.dll > System.Runtime.Serialization.Formatters.Soap.xml
40
41 System.Drawing.xml :
42         mono-api-info $(DLL_PATH)/System.Drawing.dll > System.Drawing.xml
43
44 System.Security.xml :
45         mono-api-info $(DLL_PATH)/System.Security.dll > System.Security.xml
46
47 System.DirectoryServices.xml :
48         mono-api-info $(DLL_PATH)/System.DirectoryServices.dll > System.DirectoryServices.xml
49
50 System.Windows.Forms.xml :
51         mono-api-info $(DLL_PATH)/System.Windows.Forms.dll > System.Windows.Forms.xml
52
53 Cscompmgd.xml :
54         mono-api-info $(DLL_PATH)/Cscompmgd.dll > Cscompmgd.xml
55
56
57 clean:
58         rm mscorlib.xml System.xml System.Xml.xml System.Data.xml System.Web.xml System.Web.Services.xml System.Runtime.Serialization.Formatters.Soap.xml System.Drawing.xml System.Security.xml System.DirectoryServices.xml System.Windows.Forms.xml Cscompmgd.xml 
59
60