forked from OSchip/llvm-project
Filter out tools and unittests which we don't want to build when we're building clang only.
llvm-svn: 164916
This commit is contained in:
parent
446fb68894
commit
aae78b861f
|
@ -27,6 +27,11 @@ ifeq ($(MAKECMDGOALS),libs-only)
|
|||
DIRS := $(filter-out tools docs, $(DIRS))
|
||||
OPTIONAL_DIRS :=
|
||||
endif
|
||||
ifeq ($(MAKECMDGOALS),clang-only)
|
||||
DIRS := $(filter-out tools docs unittests, $(DIRS))
|
||||
tools/driver tools/libclang
|
||||
OPTIONAL_DIRS :=
|
||||
endif
|
||||
|
||||
###
|
||||
# Common Makefile code, shared by all Clang Makefiles.
|
||||
|
|
Loading…
Reference in New Issue