Normalize whitespace in makefiles
authorMichael Kruse <llvm@meinersbur.de>
Fri, 24 Jul 2015 23:30:31 +0000 (23:30 +0000)
committerMichael Kruse <llvm@meinersbur.de>
Fri, 24 Jul 2015 23:30:31 +0000 (23:30 +0000)
Tabs for rules and space for line continuations.

llvm-svn: 243179

polly/lib/Makefile
polly/test/Makefile

index a964074..1ba3e40 100644 (file)
@@ -27,8 +27,8 @@ ISL_CODEGEN_FILES= CodeGen/IslAst.cpp \
                    CodeGen/CodeGeneration.cpp
 
 POLLY_JSON_FILES= JSON/json_reader.cpp \
-                 JSON/json_value.cpp \
-                 JSON/json_writer.cpp
+                  JSON/json_value.cpp \
+                  JSON/json_writer.cpp
 
 ISL_FILES= External/isl/basis_reduction_tab.c \
            External/isl/isl_aff.c \
@@ -66,7 +66,7 @@ ISL_FILES= External/isl/basis_reduction_tab.c \
            External/isl/isl_local_space.c \
            External/isl/isl_lp.c \
            External/isl/isl_map.c \
-          External/isl/isl_map_list.c \
+           External/isl/isl_map_list.c \
            External/isl/isl_map_simplify.c \
            External/isl/isl_map_subtract.c \
            External/isl/isl_map_to_basic_set.c \
@@ -83,10 +83,10 @@ ISL_FILES= External/isl/basis_reduction_tab.c \
            External/isl/isl_sample.c \
            External/isl/isl_scan.c \
            External/isl/isl_schedule.c \
-          External/isl/isl_schedule_band.c \
-          External/isl/isl_schedule_node.c \
-          External/isl/isl_schedule_read.c \
-          External/isl/isl_schedule_tree.c \
+           External/isl/isl_schedule_band.c \
+           External/isl/isl_schedule_node.c \
+           External/isl/isl_schedule_read.c \
+           External/isl/isl_schedule_tree.c \
            External/isl/isl_scheduler.c \
            External/isl/isl_seq.c \
            External/isl/isl_set_list.c \
@@ -109,33 +109,33 @@ ISL_FILES= External/isl/basis_reduction_tab.c \
            External/isl/imath/imrat.c
 
 SOURCES= Polly.cpp \
-        Support/GICHelper.cpp \
-        Support/SCEVValidator.cpp \
-        Support/RegisterPasses.cpp \
-        Support/ScopHelper.cpp \
-        Support/ScopLocation.cpp \
-        Analysis/DependenceInfo.cpp \
-        Analysis/ScopDetection.cpp \
-        Analysis/ScopDetectionDiagnostic.cpp \
-        Analysis/ScopInfo.cpp \
-        Analysis/ScopGraphPrinter.cpp \
-        Analysis/ScopPass.cpp \
-        Analysis/TempScopInfo.cpp \
-        CodeGen/BlockGenerators.cpp \
-        CodeGen/LoopGenerators.cpp \
-        CodeGen/IRBuilder.cpp \
-        CodeGen/Utils.cpp \
-        CodeGen/RuntimeDebugBuilder.cpp \
-        Exchange/JSONExporter.cpp \
-        Transform/Canonicalization.cpp \
-        Transform/CodePreparation.cpp \
-        Transform/DeadCodeElimination.cpp \
-        Transform/IndependentBlocks.cpp \
-        Transform/ScheduleOptimizer.cpp \
-        ${GPGPU_FILES} \
-        ${ISL_CODEGEN_FILES} \
-        ${POLLY_JSON_FILES} \
-        ${ISL_FILES}
+         Support/GICHelper.cpp \
+         Support/SCEVValidator.cpp \
+         Support/RegisterPasses.cpp \
+         Support/ScopHelper.cpp \
+         Support/ScopLocation.cpp \
+         Analysis/DependenceInfo.cpp \
+         Analysis/ScopDetection.cpp \
+         Analysis/ScopDetectionDiagnostic.cpp \
+         Analysis/ScopInfo.cpp \
+         Analysis/ScopGraphPrinter.cpp \
+         Analysis/ScopPass.cpp \
+         Analysis/TempScopInfo.cpp \
+         CodeGen/BlockGenerators.cpp \
+         CodeGen/LoopGenerators.cpp \
+         CodeGen/IRBuilder.cpp \
+         CodeGen/Utils.cpp \
+         CodeGen/RuntimeDebugBuilder.cpp \
+         Exchange/JSONExporter.cpp \
+         Transform/Canonicalization.cpp \
+         Transform/CodePreparation.cpp \
+         Transform/DeadCodeElimination.cpp \
+         Transform/IndependentBlocks.cpp \
+         Transform/ScheduleOptimizer.cpp \
+         ${GPGPU_FILES} \
+         ${ISL_CODEGEN_FILES} \
+         ${POLLY_JSON_FILES} \
+         ${ISL_FILES}
 
 #
 # Include Makefile.common so we know what to do.
index bab51fe..879da15 100644 (file)
@@ -52,9 +52,9 @@ lit.site.cfg: FORCE
             -e "s#@POLLY_BINARY_DIR@#$(PROJ_OBJ_DIR)/..#g" \
             -e "s#@TARGET_TRIPLE@#$(TARGET_TRIPLE)#g" \
             -e "s#@LLVM_SHLIBEXT@#$(SHLIBEXT)#g" \
-             -e "s#@POLLY_LIB_DIR@#$(LibDir)#g" \
-             -e "s#@LINK_POLLY_INTO_TOOLS@#OFF#g" \
-             -e "s#@CUDALIB_FOUND@#$(CUDALIB_FOUND)#g" \
+            -e "s#@POLLY_LIB_DIR@#$(LibDir)#g" \
+            -e "s#@LINK_POLLY_INTO_TOOLS@#OFF#g" \
+            -e "s#@CUDALIB_FOUND@#$(CUDALIB_FOUND)#g" \
             $(PROJ_SRC_DIR)/lit.site.cfg.in > $@
 
 clean::