181b81b4a4
Former-commit-id: cf92446697332992ec36726e78eb8703e1f259d7
27 lines
857 B
Makefile
27 lines
857 B
Makefile
thisdir = class/Mono.Dynamic.Interpreter
|
|
SUBDIRS =
|
|
include ../../build/rules.make
|
|
|
|
LIBRARY = Mono.Dynamic.Interpreter.dll
|
|
|
|
LIB_MCS_FLAGS = -r:System.dll -r:System.Core.dll \
|
|
-d:FEATURE_CORE_DLR,FEATURE_DBNULL,FEATURE_DEFAULT_PARAMETER_VALUE,FEATURE_GET_TYPE_INFO,FEATURE_VARIANCE,FEATURE_SERIALIZATION,CLR45 \
|
|
-d:MONO_INTERPRETER \
|
|
-delaysign -keyfile:../mono.pub
|
|
|
|
MOBILE_STATIC := $(filter mobile_static monotouch monotouch_runtime, $(PROFILE))
|
|
|
|
ifdef MOBILE_STATIC
|
|
mono_dynamic_interpreter_deps = $(the_libdir_base)plaincore/System.Core.dll
|
|
LIB_MCS_FLAGS += -lib:$(the_libdir_base)plaincore
|
|
endif
|
|
|
|
include ../../build/library.make
|
|
|
|
$(the_libdir_base)Mono.Dynamic.Interpreter.dll: $(mono_dynamic_interpreter_deps)
|
|
|
|
$(the_libdir_base)plaincore/System.Core.dll:
|
|
(cd ../System.Core; $(MAKE) $@)
|
|
|
|
.NOTPARALLEL: $(the_libdir_base)plaincore/System.Core.dll
|