* Makefile.am (test-type-load): Refer to source files using $(srcdir).
authorRaja R Harinath <harinath@hurrynot.org>
Tue, 13 Sep 2005 13:57:30 +0000 (13:57 -0000)
committerRaja R Harinath <harinath@hurrynot.org>
Tue, 13 Sep 2005 13:57:30 +0000 (13:57 -0000)
(EXTRA_DIST): Add sources from 'test-type-load'.

svn path=/trunk/mono/; revision=49968

mono/tests/ChangeLog
mono/tests/Makefile.am

index e1e57c91ab51d4d80ab11d39d482cc7f009ba4d1..2b2170b05ce324cd8ee8cae91cc2c3931e10583b 100644 (file)
@@ -1,3 +1,8 @@
+2005-09-13  Raja R Harinath  <rharinath@novell.com>
+
+       * Makefile.am (test-type-load): Refer to source files using $(srcdir).
+       (EXTRA_DIST): Add sources from 'test-type-load'.
+
 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
 
        * pinvoke3.cs libtest.c: Add test for returning null arrays from delegates.
index 39ed321a7e022c8e65170ee23afd646971b4c41b..0d140ef4ad8375842b45da6c8caa3d6b77956163 100644 (file)
@@ -383,11 +383,12 @@ testbundle: console.exe
        $(with_mono_path) ./a.out
        - rm -rf a.out
 
+EXTRA_DIST += load-missing.il t-missing.cs load-exceptions.cs
 test-type-load: TestDriver.dll
-       $(ILASM) /dll load-missing.il
-       $(CSC) /target:library /out:t.dll /d:FOUND t-missing.cs
-       $(CSC) /r:TestDriver.dll /r:load-missing.dll /r:t.dll load-exceptions.cs
-       $(CSC) /target:library /out:t.dll t-missing.cs
+       $(ILASM) /dll /output:load-missing.dll $(srcdir)/load-missing.il
+       $(CSC) /target:library /out:t.dll /d:FOUND $(srcdir)/t-missing.cs
+       $(CSC) /r:TestDriver.dll /r:load-missing.dll /r:t.dll /out:load-exceptions.exe $(srcdir)/load-exceptions.cs
+       $(CSC) /target:library /out:t.dll $(srcdir)/t-missing.cs
        $(RUNTIME) load-exceptions.exe
 
 noinst_LTLIBRARIES = libtest.la