[sgen] Scan pinned objects in nursery as part of concurrent mark
[mono.git] / mcs / tools / mono-shlib-cop / Makefile
1 thisdir = tools/mono-shlib-cop
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 LOCAL_MCS_FLAGS = -r:Mono.Posix.dll -r:System.dll -r:System.Xml.dll
6
7 PROGRAM = mono-shlib-cop.exe
8
9 TEST_INPUT = test.dll
10
11 EXTRA_DISTFILES = test.cs
12
13 include ../../build/executable.make
14
15 clean-local: cleanup
16
17 cleanup:
18         -rm -f $(TEST_INPUT)
19
20 run-test-local: run-mono-shlib-cop-test
21
22 run-mono-shlib-cop-test: $(the_lib) $(TEST_INPUT)
23         MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(the_lib) $(TEST_INPUT) | diff - test.dll.out
24
25 $(TEST_INPUT) : test.cs
26         $(CSCOMPILE) -target:library $< -out:$@