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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2004-05-03 21:21:42 +0400
committerMiguel de Icaza <miguel@gnome.org>2004-05-03 21:21:42 +0400
commitd19af8f11dadf32893a8d34d51a459b9a35a63bc (patch)
tree08edc7b921d5ea0ac75a9dbd0738bd902132ba75 /runtime
parente1753c687ca8a9ab6f1a32a82f53ba0a919f7456 (diff)
Fix
svn path=/trunk/mono/; revision=26612
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am15
1 files changed, 13 insertions, 2 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index 204b044f122..2538bb45983 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -52,10 +52,21 @@ fx11dir = $(libdir)/mono/1.1/
fx20dir = $(libdir)/mono/2.0/
endif
+$(fx11_DATA):
+ if test -f $(mcs_topdir)/mcs/mcs.exe; then f=$(mcs_topdir)/mcs/mcs.exe; else f=$(fx11dir)/mcs.exe; fi; \
+ echo "cp -f $$f $(srcdir)"; \
+ cp -f $$f $(srcdir)
+ if test -f $(mcs_topdir)/mcs/mbas.exe; then f=$(mcs_topdir)/mcs/mbas.exe; else f=$(fx11dir)/mbas.exe; fi; \
+ echo "cp -f $$f $(srcdir)"; \
+ cp -f $$f $(srcdir)
+
+$(fx20_DATA):
+ if test -f $(mcs_topdir)/gmcs/gmcs.exe; then f=$(mcs_topdir)/gmcs/gmcs.exe; else f=$(fx20dir)/gmcs.exe; fi; \
+ echo "cp -f $$f $(srcdir)"; \
+ cp -f $$f $(srcdir)
+
$(monobins_DATA):
@case "$@" in \
- mcs.exe) d=mcs ;; \
- mbas.exe) d=mbas ;; \
monoresgen.exe) d=monoresgen ;; \
ilasm.exe) d=ilasm ;; \
cilc.exe) d=tools/cilc ;; \