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

revert r1.68. This breaks 'make install' without doing 'make' first, but

fixes PR1208.

llvm-svn: 34466
This commit is contained in:
Chris Lattner 2007-02-21 06:23:20 +00:00
parent 95874f6bc9
commit b8a9b86473

View File

@ -40,6 +40,13 @@ ifeq ($(MAKECMDGOALS),tools-only)
OPTIONAL_DIRS := OPTIONAL_DIRS :=
endif 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 the main makefile machinery.
include $(LLVM_SRC_ROOT)/Makefile.rules include $(LLVM_SRC_ROOT)/Makefile.rules