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:
authorRaja R Harinath <harinath@hurrynot.org>2004-09-28 16:44:30 +0400
committerRaja R Harinath <harinath@hurrynot.org>2004-09-28 16:44:30 +0400
commit6f08eae1e41ce5d42ffdab928e79c03b9e63c0ce (patch)
treee82dd35646aa7c67736ca707b95a9f8f14a5cb4b /Makefile.am
parent4dbc8109f2e79390b4bc5797c72813bd40ef4d73 (diff)
($(tmpinst)/bin/pedump): New.
(mcs-do-run-test-profiles): Depend on it. svn path=/trunk/mono/; revision=34480
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index f63ebe6b5c9..a3d919a064e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -148,7 +148,7 @@ mcs-do-full-build:
mcs-do-clean-profiles:
cd $(mcs_topdir) && $(MAKE) clean-profiles
-mcs-do-run-test-profiles: tmpinst-dir $(tmpinst)/bin/mbas $(tmpinst)/bin/ilasm
+mcs-do-run-test-profiles: tmpinst-dir $(tmpinst)/bin/mbas $(tmpinst)/bin/ilasm $(tmpinst)/bin/pedump
tmpinst=`cd $(tmpinst) && pwd` ; \
PATH=$$tmpinst/bin:$$PATH ; export PATH ; \
cd $(mcs_topdir) && $(MAKE) run-test-profiles
@@ -204,6 +204,10 @@ $(tmpinst)/bin/mono: $(srcdir)/Makefile.am
endif
+$(tmpinst)/bin/pedump: $(srcdir)/Makefile.am
+ (b=`pwd`; echo '#! /bin/sh'; echo 'exec "'"$$b/libtool"'" --mode=execute "'"$$b/mono/metadata/pedump"'" "$$@"') > $@
+ chmod +x $@
+
$(tmpinst)/bin/mcs: $(srcdir)/Makefile.am
(t=`cd $(tmpinst) && pwd`; echo '#! /bin/sh'; echo 'exec "'"$$t/bin/mono"'" "'"$$t/lib/mcs.exe"'" "$$@"') > $@
chmod +x $@