Makefile 403 B

1234567891011121314151617
  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. include ../../build/library.make