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:
authorKatelyn Gadd <kg@luminance.org>2018-01-03 14:09:09 +0300
committerMarek Safar <marek.safar@gmail.com>2018-01-05 12:28:11 +0300
commit4051586e6f636e84dd59a1d48748eae5e441cfd1 (patch)
treedba70721e69f09c5dda17bacfa2a75e5eb98c616 /Makefile.am
parent1f174145d1e6efa7008e353083f4d1ed0c8b0e69 (diff)
Replace explicit make invocations with uses of the MAKE variable
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am
index 7e3f093f20a..a517fbeb635 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -121,7 +121,7 @@ update-csproj:
-rm msvc/scripts/order.xml
-rm -rf msvc/scripts/inputs
-mkdir msvc/scripts/inputs
- (cd runtime; make V=1 extra_targets=csproj-local)
+ (cd runtime; $(MAKE) V=1 extra_targets=csproj-local)
package-inputs:
echo '<?xml version="1.0" encoding="utf-8"?>' > msvc/scripts/order.xml
@@ -150,9 +150,9 @@ update-llvm-version:
update-solution-files:
- make update-csproj
- make package-inputs
- (cd msvc/scripts; make genproj.exe; mono genproj.exe $(GENPROJ_ARGS))
+ $(MAKE) update-csproj
+ $(MAKE) package-inputs
+ (cd msvc/scripts; $(MAKE) genproj.exe; mono genproj.exe $(GENPROJ_ARGS))
update-solution-files-with-tests:
- make "GENPROJ_ARGS=2012 true true" update-solution-files
+ $(MAKE) "GENPROJ_ARGS=2012 true true" update-solution-files