Fix bugs in sizing TableLayoutPanel (Xamarin bug 18638)
[mono.git] / mono / tests / assemblyresolve / Makefile.am
1 with_mono_path = MONO_PATH=$(mcs_topdir)/class/lib/net_4_0
2
3 RUNTIME = $(with_mono_path) $(top_builddir)/runtime/mono-wrapper --debug
4 MCS = $(RUNTIME) $(mcs_topdir)/class/lib/build/mcs.exe -debug:full -target:library
5
6 prereq: test/asm.dll
7
8 test/.dirstamp deps/.dirstamp:
9         -mkdir $(@D)
10         rm -f $@ && date > $@
11
12 test/asm.dll: test/.dirstamp
13 deps/test.dll deps/TestBase.dll: deps/.dirstamp
14
15 test/asm.dll: deps/test.dll asm.cs
16         $(MCS) -out:test/asm.dll -r:deps/TestBase.dll -r:deps/test.dll $(srcdir)/asm.cs
17
18 deps/test.dll: deps/TestBase.dll Test.cs
19         $(MCS) -out:deps/test.dll -r:deps/TestBase.dll $(srcdir)/Test.cs
20
21 deps/TestBase.dll: TestBase.cs
22         $(MCS) -out:deps/TestBase.dll $(srcdir)/TestBase.cs
23
24 EXTRA_DIST = asm.cs Test.cs TestBase.cs
25
26 clean:
27         rm -f deps/*.dll test/*.dll