This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / System.XML / Makefile
1 thisdir = class/System.XML
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 LIBRARY = System.Xml.dll
6
7 ifeq ($(PROFILE),atomic)
8 SCARY_LIB=
9 else
10 SCARY_LIB=/lib:$(prefix)/lib /noconfig
11 endif
12
13 LIB_MCS_FLAGS = $(SCARY_LIB) /unsafe /r:$(corlib) /r:System.dll 
14 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
15
16 EXTRA_DISTFILES = \
17         Mono.System.XML.csproj          \
18         Mono.System.XML.sln             \
19         README                          \
20         System.Xml.Schema/BUGS-MS.txt   \
21         System.Xml.Schema/BUGS.txt      \
22         $(wildcard System.Xml.Serialization/standalone_tests/*.cs) \
23         $(wildcard System.Xml.Serialization/standalone_tests/*.output) \
24         System.Xml.XPath/Parser.jay     \
25         Test/Microsoft.Test.csproj      \
26         Test/Mono.Test.csproj           \
27         Test/MonoMicro.Test.csproj      \
28         Test/XmlFiles/xsd/xml.xsd       \
29         Test/XmlFiles/xsd/ChangeLog     \
30         Test/XmlFiles/xsl/empty.xsl     \
31         Test/XmlFiles/xsl/ChangeLog     \
32         Test/XmlFiles/ChangeLog
33
34 System.Xml.XPath/Parser.cs: System.Xml.XPath/Parser.jay $(topdir)/jay/skeleton.cs
35         $(topdir)/jay/jay -ct < $(topdir)/jay/skeleton.cs $< >$@
36
37 CLEAN_FILES = Test/XmlFiles/xsl/result.xml System.Xml.XPath/Parser.cs
38
39 include ../../build/library.make