summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGreg V <greg@unrelenting.technology>2018-06-27 18:02:37 +0300
committerGreg V <greg@unrelenting.technology>2018-06-27 18:02:37 +0300
commitc2ca872f68fc94d6a87478364f2932426f7c747a (patch)
treea15a3d8e2ded2ae6eaedd69696804fe4a5d6df8b /Makefile
parent06322fd510f3899f7a6c743760528333d9f28506 (diff)
downloadmrust-c2ca872f68fc94d6a87478364f2932426f7c747a.tar.gz
Makefile improvements
- one 'make -> $(MAKE)' - customizable LLVM targets, add ARM/AArch64 by default - CXX/CC instead of hardcoded 'g++'/'gcc' for LLVM build
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0d34be43..256bb6c6 100644
--- a/Makefile
+++ b/Makefile
@@ -322,7 +322,7 @@ src/main.cpp: $(PCHS:%=src/%.gch)
$V$(CXX) -std=c++14 -o $@ $< $(CPPFLAGS) -MMD -MP -MF $@.dep
tools/bin/common_lib.a:
- make -C tools/common
+ $(MAKE) -C tools/common
-include $(OBJ:%=%.dep)