Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit 89c2339

Browse files
committed
Reformat Makefile.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@241991 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent fac7210 commit 89c2339

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

tools/c-arcmt-test/Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,12 @@ NO_INSTALL = 1
2121
# LINK_COMPONENTS before including Makefile.rules
2222
include $(CLANG_LEVEL)/../../Makefile.config
2323

24-
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option
24+
LINK_COMPONENTS := $(TARGETS_TO_BUILD) \
25+
AsmParser \
26+
BitReader \
27+
MC \
28+
Option \
29+
Support
2530

2631
# Note that 'USEDLIBS' must include all of the core clang libraries
2732
# when -static is given to linker on cygming.

tools/c-index-test/Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,12 @@ TOOL_NO_EXPORTS = 1
2222
# LINK_COMPONENTS before including Makefile.rules
2323
include $(CLANG_LEVEL)/../../Makefile.config
2424

25-
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option
25+
LINK_COMPONENTS := $(TARGETS_TO_BUILD) \
26+
AsmParser \
27+
BitReader \
28+
MC \
29+
Option \
30+
Support
2631

2732
# Note that 'USEDLIBS' must include all of the core clang libraries
2833
# when -static is given to linker on cygming.

unittests/libclang/Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ TESTNAME = libclang
1212
LINK_LIBS_IN_SHARED := 1
1313

1414
include $(CLANG_LEVEL)/../../Makefile.config
15-
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option
15+
LINK_COMPONENTS := $(TARGETS_TO_BUILD) \
16+
AsmParser \
17+
BitReader \
18+
MC \
19+
Option \
20+
Support
1621

1722
# Note that 'USEDLIBS' must include all of the core clang libraries
1823
# when -static is given to linker on cygming.

0 commit comments

Comments
 (0)