Makefile 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. System.Xml.Query/XQueryParser.jay \
  23. Test/Microsoft.Test.csproj \
  24. Test/Mono.Test.csproj \
  25. Test/MonoMicro.Test.csproj \
  26. Test/XmlFiles/xsd/xml.xsd \
  27. Test/XmlFiles/xsd/ChangeLog \
  28. Test/XmlFiles/xsl/empty.xsl \
  29. Test/XmlFiles/xsl/ChangeLog \
  30. Test/XmlFiles/ChangeLog
  31. System.Xml.XPath/Parser.cs: System.Xml.XPath/Parser.jay $(topdir)/jay/skeleton.cs
  32. $(topdir)/jay/jay -ct < $(topdir)/jay/skeleton.cs $< >$@
  33. System.Xml.Query/XQueryParser.cs: System.Xml.Query/XQueryParser.jay System.Xml.Query/skeleton-2.0.cs
  34. $(topdir)/jay/jay -ct < System.Xml.Query/skeleton-2.0.cs $< >$@
  35. CLEAN_FILES = Test/XmlFiles/xsl/result.xml System.Xml.XPath/Parser.cs System.Xml.Query/XQueryParser.cs
  36. include ../../build/library.make