Skip to content

Commit

Permalink
Add targets to support the installation of clang in isolation.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62522 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Mike Stump committed Jan 19, 2009
1 parent 2722e7b commit b76ace3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,17 @@ ifeq ($(MAKECMDGOALS),tools-only)
OPTIONAL_DIRS :=
endif

ifeq ($(MAKECMDGOALS),install-clang)
DIRS := tools/clang/Driver tools/clang/lib/Headers tools/clang/tools/ccc
OPTIONAL_DIRS :=
NO_INSTALL = 1
endif

ifeq ($(MAKECMDGOALS),clang-only)
DIRS := $(filter-out tools runtime docs, $(DIRS)) tools/clang
OPTIONAL_DIRS :=
endif

ifeq ($(MAKECMDGOALS),unittests)
DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
OPTIONAL_DIRS :=
Expand Down Expand Up @@ -113,8 +124,10 @@ dist-hook::
$(TopDistDir)/include/llvm/Support/DataTypes.h \
$(TopDistDir)/include/llvm/Support/ThreadSupport.h

clang-only: all
tools-only: all
libs-only: all
install-clang: install
install-libs: install

#------------------------------------------------------------------------
Expand Down

0 comments on commit b76ace3

Please sign in to comment.