64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
MCS_BUILD_DIR = ../../../build
|
|
|
|
thisdir = class/Facades/netstandard
|
|
SUBDIRS =
|
|
include $(MCS_BUILD_DIR)/rules.make
|
|
|
|
LIBRARY_SUBDIR = Facades
|
|
LIBRARY_INSTALL_DIR = $(mono_libdir)/mono/$(FRAMEWORK_VERSION)/Facades
|
|
|
|
LIBRARY = netstandard.dll
|
|
|
|
KEYFILE = ../../Open.snk
|
|
LIBRARY_SNK = $(KEYFILE)
|
|
SIGN_FLAGS = /delaysign /nowarn:1616,1699,618
|
|
LIB_REFS = System System.Xml System.Xml.Linq System.Core System.Numerics System.Net.Http \
|
|
System.IO.Compression System.ComponentModel.Composition System.IO.Compression.FileSystem
|
|
|
|
LIB_MCS_FLAGS = $(SIGN_FLAGS) $(EXTRA_LIB_MCS_FLAGS)
|
|
|
|
ifneq ($(PROFILE),build)
|
|
# for the build profile we include stubs for these types directly in netstandard.dll
|
|
LIB_REFS += System.Transactions System.Runtime.Serialization System.Data
|
|
|
|
ifeq ($(PROFILE),xammac_net_4_5)
|
|
LIB_REFS += System.Web.Services
|
|
else ifeq (2.1, $(FRAMEWORK_VERSION))
|
|
LIB_REFS += System.Web.Services
|
|
else
|
|
LIB_REFS += System.Web
|
|
endif
|
|
|
|
endif
|
|
|
|
ifneq (,$(filter build net_4_x, $(PROFILE)))
|
|
# drawing types are inside System.Drawing.dll
|
|
LIB_REFS += System.Drawing
|
|
else
|
|
# drawing types are inside System.Drawing.Common.dll
|
|
LIB_REFS += Facades/System.Drawing.Common
|
|
endif
|
|
|
|
PLATFORM_DEBUG_FLAGS =
|
|
|
|
NO_TEST = yes
|
|
|
|
include $(MCS_BUILD_DIR)/library.make
|
|
|
|
|