Makefile 991 B

123456789101112131415161718192021222324252627282930313233
  1. thisdir = class/System.XML
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = System.Xml.dll
  5. LIB_MCS_FLAGS = /unsafe /r:$(corlib) /r:System.dll /nowarn:649 /nowarn:169
  6. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
  7. EXTRA_DISTFILES = \
  8. Mono.System.XML.csproj \
  9. Mono.System.XML.sln \
  10. README \
  11. System.Xml.Schema/BUGS-MS.txt \
  12. System.Xml.Schema/BUGS.txt \
  13. $(wildcard System.Xml.Serialization/standalone_tests/*.cs) \
  14. $(wildcard System.Xml.Serialization/standalone_tests/*.output) \
  15. System.Xml.XPath/Parser.jay \
  16. Test/Microsoft.Test.csproj \
  17. Test/Mono.Test.csproj \
  18. Test/MonoMicro.Test.csproj \
  19. Test/XmlFiles/xsd/xml.xsd \
  20. Test/XmlFiles/xsd/ChangeLog \
  21. Test/XmlFiles/xsl/empty.xsl \
  22. Test/XmlFiles/xsl/ChangeLog \
  23. Test/XmlFiles/ChangeLog
  24. System.Xml.XPath/Parser.cs: System.Xml.XPath/Parser.jay $(topdir)/jay/skeleton.cs
  25. $(topdir)/jay/jay -ct < $(topdir)/jay/skeleton.cs $< >$@
  26. CLEAN_FILES = Test/XmlFiles/xsl/result.xml System.Xml.XPath/Parser.cs
  27. include ../../build/library.make