Makefile 1.1 KB

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