2015-04-07 09:35:12 +01:00
|
|
|
thisdir = class/reference-assemblies
|
|
|
|
|
|
|
|
include ../../build/rules.make
|
|
|
|
|
|
|
|
all-local:
|
|
|
|
|
2016-02-22 11:00:01 -05:00
|
|
|
PROFILE_DIR=$(DESTDIR)$(mono_libdir)/mono
|
2015-04-26 19:10:23 +01:00
|
|
|
|
2015-04-07 09:35:12 +01:00
|
|
|
install-local:
|
2016-02-22 11:00:01 -05:00
|
|
|
$(MKINSTALLDIRS) $(PROFILE_DIR)/2.0-api
|
|
|
|
$(MKINSTALLDIRS) $(PROFILE_DIR)/3.5-api
|
|
|
|
$(MKINSTALLDIRS) $(PROFILE_DIR)/4.0-api
|
|
|
|
$(MKINSTALLDIRS) $(PROFILE_DIR)/4.5-api
|
|
|
|
$(MKINSTALLDIRS) $(PROFILE_DIR)/4.5-api/Facades
|
|
|
|
$(INSTALL_LIB) ../../../external/binary-reference-assemblies/v2.0/*.dll $(PROFILE_DIR)/2.0-api
|
|
|
|
$(INSTALL_LIB) ../../../external/binary-reference-assemblies/v3.5/*.dll $(PROFILE_DIR)/3.5-api
|
|
|
|
$(INSTALL_LIB) ../../../external/binary-reference-assemblies/v4.0/*.dll $(PROFILE_DIR)/4.0-api
|
|
|
|
$(INSTALL_LIB) ../../../external/binary-reference-assemblies/v4.5/*.dll $(PROFILE_DIR)/4.5-api
|
|
|
|
$(INSTALL_LIB) ../../../external/binary-reference-assemblies/v4.5/Facades/*.dll $(PROFILE_DIR)/4.5-api/Facades
|
|
|
|
|
|
|
|
# Unfortunately, a few programs (most notably NUnit) have hardcoded checks for <prefix>/lib/mono/4.0/mscorlib.dll,
|
|
|
|
# so we need to place something there or those tools break. We decided to symlink to the reference assembly for now.
|
|
|
|
# See https://bugzilla.xamarin.com/show_bug.cgi?id=38331
|
2015-04-26 19:10:23 +01:00
|
|
|
$(MKINSTALLDIRS) $(PROFILE_DIR)/4.0
|
2016-02-22 11:00:01 -05:00
|
|
|
ln -sf ../4.0-api/mscorlib.dll $(PROFILE_DIR)/4.0/mscorlib.dll
|
2015-04-07 09:35:12 +01:00
|
|
|
|
2016-02-22 11:00:01 -05:00
|
|
|
DISTFILES = $(wildcard ../../../external/binary-reference-assemblies/v4.5/Facades/*.dll) $(wildcard ../../../external/binary-reference-assemblies/v4.5/*.dll) $(wildcard ../../../external/binary-reference-assemblies/v4.0/*.dll) $(wildcard ../../../external/binary-reference-assemblies/v3.5/*.dll) $(wildcard ../../../external/binary-reference-assemblies/v2.0/*.dll) Makefile
|
2015-04-07 09:35:12 +01:00
|
|
|
|
|
|
|
dist-local: dist-default
|