Merge remote branch 'upstream/master'
[mono.git] / mcs / class / Mono.Debugger.Soft / Makefile
1 thisdir = class/Mono.Debugger.Soft
2 include ../../build/rules.make
3
4 LIBRARY = Mono.Debugger.Soft.dll
5 LIBRARY_SNK = ../mono.snk
6
7 LIB_MCS_FLAGS = /r:$(corlib) /r:System.dll /r:Mono.Cecil.dll /r:System.Core.dll /unsafe -D:MONO_DATACONVERTER_STATIC_METHODS -keyfile:$(LIBRARY_SNK)
8
9 TEST_MCS_FLAGS = /r:Mono.Cecil.dll
10
11 test: dtest-app.exe dtest-excfilter.exe
12 check: dtest-app.exe dtest-excfilter.exe
13
14 dtest-app.exe: Test/dtest-app.cs
15         $(CSCOMPILE) -out:$@ -unsafe -debug Test/dtest-app.cs
16
17 dtest-excfilter.exe: Test/dtest-excfilter.il
18         $(INTERNAL_ILASM) -out:$@ /exe /debug Test/dtest-excfilter.il
19
20 CLEAN_FILES = dtest-app.exe dtest-app.exe.mdb
21
22 #NO_TEST = yes
23
24 ifneq (net_2_0, $(PROFILE))
25 NO_INSTALL = yes
26 endif
27
28 include ../../build/library.make