Makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. thisdir = class/System.IdentityModel
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. ifndef NO_MONO_SECURITY
  5. MONO_SECURITY=Mono.Security
  6. endif
  7. LIBRARY = System.IdentityModel.dll
  8. LIB_REFS = System System.Xml System.Security $(MONO_SECURITY) System.Runtime.Serialization
  9. KEYFILE = ../ecma.pub
  10. LIB_MCS_FLAGS = \
  11. /d:NET_3_0 \
  12. $(OTHER_LIB_MCS_FLAGS)
  13. ifneq (2.1, $(FRAMEWORK_VERSION))
  14. LIB_REFS += System.Configuration
  15. endif
  16. ifndef NO_SYSTEM_WEB_DEPENDENCY
  17. ifneq (2.1, $(FRAMEWORK_VERSION))
  18. LIB_REFS += System.Web
  19. endif
  20. endif
  21. ifndef NO_SYSTEM_WEB_APPSERVICES_DEPENDENCY
  22. ifeq (4, $(FRAMEWORK_VERSION_MAJOR))
  23. LIB_REFS += System.Web.ApplicationServices
  24. endif
  25. endif
  26. TEST_RESOURCE_FILES = \
  27. Test/Resources/test.cer \
  28. Test/Resources/test_neg_serial.cer \
  29. Test/Resources/test.pfx \
  30. Test/Resources/test2.pfx
  31. TEST_MCS_FLAGS = $(foreach r, $(TEST_RESOURCE_FILES), -resource:$(r),$(r))
  32. TEST_LIB_REFS = System System.Xml System.Security System.Runtime.Serialization
  33. ifdef MOBILE_PROFILE
  34. NO_TEST = yes
  35. endif
  36. EXTRA_DISTFILES = $(TEST_RESOURCE_FILES)
  37. include ../../build/library.make