Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « Mono.Profiler.Log « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4658d01d1c11a4e6ec485c27a1761bc6b0e1ce6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
thisdir = class/Mono.Profiler.Log
include ../../build/rules.make

LIBRARY = Mono.Profiler.Log.dll
LIBRARY_WARN_AS_ERROR = yes

KEYFILE = $(LIBRARY_SNK)

LIB_REFS = System System.Core
LIB_MCS_FLAGS = /unsafe /publicsign /nowarn:0618 -D:MONO_DATACONVERTER_STATIC_METHOD

ifeq (net_4_x,$(PROFILE))

XTEST_LIB_REFS = System System.Core Facades/System.Threading.Tasks

xunit-test-local: $(topdir)/class/lib/$(PROFILE_DIRECTORY)/tests/log-profiler-test.exe

$(topdir)/class/lib/$(PROFILE_DIRECTORY)/tests/log-profiler-test.exe: Test/log-profiler-test.cs
	mkdir -p $(dir $@)
	$(CSCOMPILE) $(PLATFORM_DEBUG_FLAGS) /unsafe $(if $(MCS_MODE),,/warnaserror) /r:$(build_libdir)/mscorlib.dll /r:$(build_lib) /out:$@ $<

CLEAN_FILES = \
	$(topdir)/class/lib/$(PROFILE_DIRECTORY)/tests/log-profiler-test.exe \
	$(topdir)/class/lib/$(PROFILE_DIRECTORY)/tests/log-profiler-test.exe.mdb \
	$(topdir)/class/lib/$(PROFILE_DIRECTORY)/tests/log-profiler-test.pdb

else

NO_TEST = yes

endif

EXTRA_DISTFILES = \
	Test/log-profiler-test.cs

include ../../build/library.make