Makefile 851 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. LIB_MCS_FLAGS = \
  10. /d:NET_3_0 \
  11. $(OTHER_LIB_MCS_FLAGS)
  12. ifneq (2.1, $(FRAMEWORK_VERSION))
  13. LIB_REFS += System.Configuration
  14. endif
  15. ifndef NO_SYSTEM_WEB_DEPENDENCY
  16. ifneq (2.1, $(FRAMEWORK_VERSION))
  17. LIB_REFS += System.Web
  18. endif
  19. endif
  20. ifndef NO_SYSTEM_WEB_APPSERVICES_DEPENDENCY
  21. ifeq (4, $(FRAMEWORK_VERSION_MAJOR))
  22. LIB_REFS += System.Web.ApplicationServices
  23. endif
  24. endif
  25. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
  26. EXTRA_DISTFILES = \
  27. Test/Resources/test.cer \
  28. Test/Resources/test_neg_serial.cer \
  29. Test/Resources/test.pfx \
  30. Test/Resources/test2.pfx
  31. include ../../build/library.make