Makefile 1.0 KB

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