diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-10-02 06:19:15 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-10-02 06:19:15 +0000 |
commit | b7bafa94bc583af9b825b5049aed50359fdb844b (patch) | |
tree | 36ac9d48bfdba7742a692fab15176a682a905529 /Makefile | |
parent | 3ba17ee280d58bf702eb3836c119bab42dcbb9c8 (diff) |
Use an environment variable instead of what's in the make cmd goals.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@164992 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ ifeq ($(MAKECMDGOALS),libs-only) DIRS := $(filter-out tools docs, $(DIRS)) OPTIONAL_DIRS := endif -ifeq ($(MAKECMDGOALS),clang-only) +ifeq ($(BUILD_CLANG_ONLY),YES) DIRS := $(filter-out tools docs unittests, $(DIRS)) tools/driver tools/libclang OPTIONAL_DIRS := |