Makefile 501 B

123456789101112131415161718192021
  1. thisdir = class/System.Transactions
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = System.Transactions.dll
  5. LIB_MCS_FLAGS = /nowarn:169 /nowarn:618 \
  6. /r:$(corlib) /r:System.dll /debug+
  7. TEST_MCS_FLAGS = /nowarn:1595 $(LIB_MCS_FLAGS)
  8. # This is a .NET 2.0 only assembly
  9. VALID_PROFILE := $(filter net_2_0_bootstrap net_2_0, $(PROFILE))
  10. ifndef VALID_PROFILE
  11. LIBRARY_NAME = dummy-System.Transactions.dll
  12. NO_INSTALL = yes
  13. NO_SIGN_ASSEMBLY = yes
  14. NO_TEST = yes
  15. endif
  16. include ../../build/library.make