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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRomain Tartière <romain@blogreen.org>2012-05-16 23:47:12 +0400
committerMichael Hutchinson <m.j.hutchinson@gmail.com>2012-05-17 20:13:42 +0400
commitdcf1c03bd3db266bd38e13d19d266133a0a33f83 (patch)
tree15c2280f3d31807aa24e5360459bfe618e757389 /Makefile
parent2c9651d77b35fccb6d2fff00eb72448b4c2e512b (diff)
Fix #5113 - Improve building portability
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index fe2f89c606..83acdf5ee2 100644
--- a/Makefile
+++ b/Makefile
@@ -20,8 +20,8 @@ CONFIG_MAKE=$(top_srcdir)/config.make
case $$2 in *=*) dk="exit 1" ;; *k*) dk=: ;; *) dk="exit 1" ;; esac; \
for dir in $(SUBDIRS); do \
case $$dir in \
- .) make $*-local || { final_exit="exit 1"; $$dk; };;\
- *) (cd $$dir && make $*) || { final_exit="exit 1"; $$dk; };;\
+ .) $(MAKE) $*-local || { final_exit="exit 1"; $$dk; };;\
+ *) (cd $$dir && $(MAKE) $*) || { final_exit="exit 1"; $$dk; };;\
esac \
done
$$final_exit
@@ -76,19 +76,19 @@ dist: update_submodules remove-stale-tarballs dist-recursive
@cd tarballs && rm -rf monodevelop-$(PACKAGE_VERSION)
run:
- cd main && make run
+ cd main && $(MAKE) run
run-gdb:
- cd main && make run-gdb
+ cd main && $(MAKE) run-gdb
test:
- cd main/tests/UnitTests && make test fixture=$(fixture)
+ cd main/tests/UnitTests && $(MAKE) test fixture=$(fixture)
check-addins:
- cd main && make check-addins
+ cd main && $(MAKE) check-addins
app-dir:
- cd main && make app-dir
+ cd main && $(MAKE) app-dir
reset-versions: reset-all
check-versions: check-all