Makefile 592 B

12345678910111213141516171819202122232425262728
  1. MCS_BUILD_DIR = ../../../build
  2. thisdir = class/Facades/System.ServiceProcess.ServiceController
  3. SUBDIRS =
  4. include $(MCS_BUILD_DIR)/rules.make
  5. LIBRARY_SUBDIR = Facades
  6. LIBRARY_INSTALL_DIR = $(mono_libdir)/mono/$(FRAMEWORK_VERSION)/Facades
  7. LIBRARY = System.ServiceProcess.ServiceController.dll
  8. KEY_FILE = ../../msfinal.pub
  9. SIGN_FLAGS = /delaysign /keyfile:$(KEY_FILE) /nowarn:1616,1699
  10. LIB_REFS = System
  11. ifneq (2.1, $(FRAMEWORK_VERSION))
  12. ifndef XAMMAC_4_5
  13. LIB_REFS += System.ServiceProcess
  14. endif
  15. endif
  16. LIB_MCS_FLAGS = $(SIGN_FLAGS)
  17. NO_TEST = yes
  18. include $(MCS_BUILD_DIR)/library.make