Makefile 669 B

1234567891011121314151617181920212223
  1. thisdir = class/System.Security
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = System.Security.dll
  5. LIB_MCS_FLAGS = -nowarn:618 \
  6. -r:$(corlib) -r:System.dll -r:System.Xml.dll \
  7. -debug+
  8. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:169,219,1595
  9. ifeq (net_2_0,$(PROFILE))
  10. LIB_MCS_FLAGS += -r:Mono.Security.dll -nowarn:414
  11. TEST_MCS_FLAGS += -nowarn:168,183,414
  12. endif
  13. EXTRA_DISTFILES = \
  14. Test/System.Security.Cryptography.Xml/sample.pfx \
  15. Test/System.Security.Cryptography.Xml/EncryptedXmlSample1.xml \
  16. Test/System.Security.Cryptography.Xml/EncryptedXmlSample2.xml \
  17. Test/System.Security.Cryptography.Xml/EncryptedXmlSample3.xml
  18. include ../../build/library.make