1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Don't prevent install target from descending into the utils directory.

It prevents "make install" on a clean directory from working.

llvm-svn: 33905
This commit is contained in:
Reid Spencer 2007-02-05 09:43:17 +00:00
parent 318e23e7fe
commit 25f656a559

View File

@ -40,13 +40,6 @@ ifeq ($(MAKECMDGOALS),tools-only)
OPTIONAL_DIRS :=
endif
# Don't install utils, examples, or projects they are only used to
# build LLVM.
ifeq ($(MAKECMDGOALS),install)
DIRS := $(filter-out utils, $(DIRS))
OPTIONAL_DIRS :=
endif
# Include the main makefile machinery.
include $(LLVM_SRC_ROOT)/Makefile.rules