diff options
author | Chris Lattner <sabre@nondot.org> | 2003-09-15 01:12:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-09-15 01:12:04 +0000 |
commit | 069f930a3bfdea3394ea3e85b99e32b25c735932 (patch) | |
tree | fda1939361f32ed1b339f80b39a5ca4d50c195a4 | |
parent | 00e730abc387e2c603247e3554e90f426139aa0d (diff) |
Wrap long lines at 80 cols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8512 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | Makefile.rules | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules index 47635c9b57..2e3db61251 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -268,7 +268,9 @@ LLVMAS := $(LLVMTOOLCURRENT)/llvm-as # LEVEL/include : config.h files for the project # LLVM_SRC_ROOT/include : Files global to LLVM. # -CPPFLAGS += -I$(BUILD_OBJ_DIR) -I$(BUILD_SRC_DIR) -I$(LLVM_OBJ_ROOT)/include -I$(BUILD_SRC_ROOT)/include -I$(LEVEL)/include -I$(LLVM_SRC_ROOT)/include +CPPFLAGS += -I$(BUILD_OBJ_DIR) -I$(BUILD_SRC_DIR) -I$(LLVM_OBJ_ROOT)/include \ + -I$(BUILD_SRC_ROOT)/include -I$(LEVEL)/include \ + -I$(LLVM_SRC_ROOT)/include # By default, strip symbol information from executable ifndef KEEP_SYMBOLS @@ -342,7 +344,8 @@ AR = ${AR_PATH} cq # The local Makefile can list other Source files via ExtraSource = ... # ifndef Source -Source := $(notdir $(ExtraSource) $(wildcard $(SourceDir)/*.cpp $(SourceDir)/*.c $(SourceDir)/*.y $(SourceDir)/*.l)) +Source := $(notdir $(ExtraSource) $(wildcard $(SourceDir)/*.cpp \ + $(SourceDir)/*.c $(SourceDir)/*.y $(SourceDir)/*.l)) endif # |