1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Add install-libs target which only installs libraries, not tools

llvm-svn: 44979
This commit is contained in:
Nate Begeman 2007-12-13 02:17:17 +00:00
parent 8361abb64f
commit 29729c8ccd

View File

@ -37,6 +37,11 @@ ifeq ($(MAKECMDGOALS),libs-only)
OPTIONAL_DIRS := OPTIONAL_DIRS :=
endif endif
ifeq ($(MAKECMDGOALS),install-libs)
DIRS := $(filter-out tools runtime docs, $(DIRS))
OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
endif
ifeq ($(MAKECMDGOALS),tools-only) ifeq ($(MAKECMDGOALS),tools-only)
DIRS := $(filter-out runtime docs, $(DIRS)) DIRS := $(filter-out runtime docs, $(DIRS))
OPTIONAL_DIRS := OPTIONAL_DIRS :=
@ -81,6 +86,7 @@ dist-hook::
tools-only: all tools-only: all
libs-only: all libs-only: all
install-libs: install
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# Make sure the generated headers are up-to-date. This must be kept in # Make sure the generated headers are up-to-date. This must be kept in