X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.XML%2FMakefile;h=964fced2967b58ad8001765e289f9d0be21dd2ba;hb=1d3cbfe8b8f8a453f616ad6ee7cfefdb8917ecac;hp=1b7b4854cc8cc749b82aebf44c09b8ea23edfc76;hpb=c003aaf26d8c7ff1e75f8ad98c06abd5d0b816bc;p=mono.git diff --git a/mcs/class/System.XML/Makefile b/mcs/class/System.XML/Makefile index 1b7b4854cc8..964fced2967 100644 --- a/mcs/class/System.XML/Makefile +++ b/mcs/class/System.XML/Makefile @@ -3,8 +3,15 @@ SUBDIRS = include ../../build/rules.make LIBRARY = System.Xml.dll +LIBRARY_USE_INTERMEDIATE_FILE = yes -LIB_MCS_FLAGS = /unsafe /r:$(corlib) /r:System.dll +ifeq ($(PROFILE),atomic) +SCARY_LIB= +else +SCARY_LIB=/lib:$(prefix)/lib /noconfig +endif + +LIB_MCS_FLAGS = $(SCARY_LIB) /unsafe /r:$(corlib) /r:System.dll /nowarn:0162 /nowarn:0618 /nowarn:0612 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) EXTRA_DISTFILES = \ @@ -16,6 +23,7 @@ EXTRA_DISTFILES = \ $(wildcard System.Xml.Serialization/standalone_tests/*.cs) \ $(wildcard System.Xml.Serialization/standalone_tests/*.output) \ System.Xml.XPath/Parser.jay \ + System.Xml.Query/XQueryParser.jay \ Test/Microsoft.Test.csproj \ Test/Mono.Test.csproj \ Test/MonoMicro.Test.csproj \ @@ -25,6 +33,12 @@ EXTRA_DISTFILES = \ Test/XmlFiles/xsl/ChangeLog \ Test/XmlFiles/ChangeLog -CLEAN_FILES = Test/XmlFiles/xsl/result.xml +System.Xml.XPath/Parser.cs: System.Xml.XPath/Parser.jay $(topdir)/jay/skeleton.cs + $(topdir)/jay/jay -ct < $(topdir)/jay/skeleton.cs $< >$@ + +System.Xml.Query/XQueryParser.cs: System.Xml.Query/XQueryParser.jay System.Xml.Query/skeleton-2.0.cs + $(topdir)/jay/jay -ct < System.Xml.Query/skeleton-2.0.cs $< >$@ + +CLEAN_FILES = Test/XmlFiles/xsl/result.xml System.Xml.XPath/Parser.cs System.Xml.Query/XQueryParser.cs include ../../build/library.make