Makefile 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. thisdir = class/System.Security
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. ifndef NO_MONO_SECURITY
  5. MONO_SECURITY = Mono.Security
  6. endif
  7. LIBRARY = System.Security.dll
  8. API_BIN_REFS := System.Numerics System.Core
  9. LIB_REFS = $(MONO_SECURITY) System System.Xml
  10. KEYFILE = ../msfinal.pub
  11. LIB_MCS_FLAGS = -unsafe -nowarn:414,618 -d:SECURITY_DEP
  12. LOCAL_MCS_FLAGS =
  13. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:168,169,183,219,414
  14. XTEST_LIB_REFS = System.Core System Facades/System.Linq Facades/System.Threading.Tasks
  15. EXTRA_DISTFILES = \
  16. Test/System.Security.Cryptography.Xml/sample.pfx \
  17. Test/System.Security.Cryptography.Xml/EncryptedXmlSample1.xml \
  18. Test/System.Security.Cryptography.Xml/EncryptedXmlSample2.xml \
  19. Test/System.Security.Cryptography.Xml/EncryptedXmlSample3.xml \
  20. Test/System.Security.Cryptography.Pkcs/detached.data \
  21. Test/System.Security.Cryptography.Pkcs/detached.p7
  22. RESX_RESOURCE_STRING = \
  23. ../../../external/corefx/src/System.Security.Cryptography.Xml/src/Resources/Strings.resx \
  24. ../../../external/corefx/src/System.Security.Cryptography.Pkcs/src/Resources/Strings.resx
  25. include ../../build/library.make