]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/commitdiff
Removed trailing whitespace from Makefiles.
authorMisha Brukman <brukman+llvm@gmail.com>
Fri, 9 Jan 2009 16:44:42 +0000 (16:44 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Fri, 9 Jan 2009 16:44:42 +0000 (16:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61991 91177308-0d34-0410-b5e6-96231b3b80d8

45 files changed:
Makefile.common
Makefile.config.in
lib/Analysis/IPA/Makefile
lib/Analysis/Makefile
lib/Archive/Makefile
lib/AsmParser/Makefile
lib/Bitcode/Makefile
lib/Bitcode/Reader/Makefile
lib/Bitcode/Writer/Makefile
lib/CodeGen/AsmPrinter/Makefile
lib/CodeGen/Makefile
lib/CodeGen/SelectionDAG/Makefile
lib/Debugger/Makefile
lib/ExecutionEngine/Interpreter/Makefile
lib/ExecutionEngine/JIT/Makefile
lib/ExecutionEngine/Makefile
lib/Linker/Makefile
lib/Makefile
lib/Support/Makefile
lib/System/Makefile
lib/Target/ARM/AsmPrinter/Makefile
lib/Target/Alpha/AsmPrinter/Makefile
lib/Target/Alpha/Makefile
lib/Target/CBackend/Makefile
lib/Target/CellSPU/AsmPrinter/Makefile
lib/Target/CellSPU/Makefile
lib/Target/CppBackend/Makefile
lib/Target/IA64/Makefile
lib/Target/Makefile
lib/Target/Mips/Makefile
lib/Target/PIC16/Makefile
lib/Target/PowerPC/AsmPrinter/Makefile
lib/Target/PowerPC/Makefile
lib/Target/Sparc/AsmPrinter/Makefile
lib/Target/Sparc/Makefile
lib/Target/X86/AsmPrinter/Makefile
lib/Target/X86/Makefile
lib/Target/XCore/Makefile
lib/Transforms/Hello/Makefile
lib/Transforms/IPO/Makefile
lib/Transforms/Instrumentation/Makefile
lib/Transforms/Makefile
lib/Transforms/Scalar/Makefile
lib/Transforms/Utils/Makefile
lib/VMCore/Makefile

index 18a4ace19fd00ef3cd0752ba9404db256868ad81..e1f52036f6f6afbee5f5b35e7581e2b25f7c773f 100644 (file)
@@ -1,10 +1,10 @@
 #===-- Makefile.common - Common make rules for LLVM --------*- Makefile -*--===#
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 #===------------------------------------------------------------------------===#
 #
 # This file is included by all of the LLVM makefiles.  This file defines common
@@ -15,8 +15,8 @@
 # The following functionality can be set by setting incoming variables.
 # The variable $(LEVEL) *must* be set:
 #
-# 1. LEVEL - The level of the current subdirectory from the top of the 
-#    source directory.  This level should be expressed as a path, for 
+# 1. LEVEL - The level of the current subdirectory from the top of the
+#    source directory.  This level should be expressed as a path, for
 #    example, ../.. for two levels deep.
 #
 # 2. DIRS - A list of subdirectories to be built.  Fake targets are set up
@@ -29,7 +29,7 @@
 #    built, which are then built in any order.
 #
 # 4. Source - If specified, this sets the source code filenames.  If this
-#    is not set, it defaults to be all of the .cpp, .c, .y, and .l files 
+#    is not set, it defaults to be all of the .cpp, .c, .y, and .l files
 #    in the current directory.  Also, if you want to build files in addition
 #    to the local files, you can use the ExtraSource variable
 #
@@ -56,7 +56,7 @@
 
 #
 # Configuration file to set paths specific to local installation of LLVM
-# 
+#
 ifndef LLVM_OBJ_ROOT
 include $(LEVEL)/Makefile.config
 else
index 96e5733ec797152aa76451233b58321ba32ae2e3..bcf1a00e12367f0aebcbd40e997688719ebe9125 100644 (file)
@@ -4,7 +4,7 @@
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 #===------------------------------------------------------------------------===#
 #
 # This file is included by Makefile.common.  It defines paths and other
@@ -150,7 +150,7 @@ TAR        := @TAR@
 YACC       := @YACC@
 
 # Paths to miscellaneous programs we hope are present but might not be
-PERL       := @PERL@ 
+PERL       := @PERL@
 BZIP2      := @BZIP2@
 DOT        := @DOT@
 DOXYGEN    := @DOXYGEN@
@@ -207,12 +207,12 @@ OBJ_ROOT := .
 # make command line (ie, make ENABLE_PROFILING=1):
 
 # When ENABLE_OPTIMIZED is enabled, LLVM code is optimized and output is put
-# into the "Release" directories. Otherwise, LLVM code is not optimized and 
+# into the "Release" directories. Otherwise, LLVM code is not optimized and
 # output is put in the "Debug" directories.
 #ENABLE_OPTIMIZED = 1
 @ENABLE_OPTIMIZED@
 
-# When DISABLE_ASSERTIONS is enabled, builds of all of the LLVM code will 
+# When DISABLE_ASSERTIONS is enabled, builds of all of the LLVM code will
 # exclude assertion checks, otherwise they are included.
 #DISABLE_ASSERTIONS = 1
 @DISABLE_ASSERTIONS@
index e1619e8a34e1ba8d67e6f923675e641c93c620c2..adacb16ea205a9894c0b37da1c25674244006cd1 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Analysis/IPA/Makefile ---------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../../..
index 31ce23591d0426187e3b219ca097a03363d6fcf0..4af6d350a6456b71f154019d6bef61b798a645db 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Analysis/Makefile -------------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
index e951aa3e0b16d0048db4b2946dda48f8cff3e90f..da9780403a08fd1d74ea074e1cd623bf1abe6aaa 100644 (file)
@@ -1,16 +1,16 @@
 ##===- lib/Archive/Makefile --------------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
 LIBRARYNAME = LLVMArchive
 
-# We only want an archive so only those modules actually used by a tool are 
+# We only want an archive so only those modules actually used by a tool are
 # included.
 BUILD_ARCHIVE := 1
 
index c1b237526323d1d95688b53c98398f09ca33723e..995bb0e130e2bee6fbe94b259eba3b3890d9250f 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/AsmParser/Makefile ------------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
index 7abff6a0b73c25a30497daeeadf099c32aeb59fd..2d6b5ad1fe88b678cb0b205f50dc4010e6c78e34 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Bitcode/Makefile --------------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
index f194ec28e92d9c447cedf13633ada9ee87fee9b9..59af8d53a73ea7b23431106caf80129c6439fa41 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Bitcode/Reader/Makefile -------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../../..
index 7abc1d3d8f0dcbe20c264a2add6eb28401caf032..7b0bd72159add299227cbc2c172e207f30c5bf75 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Bitcode/Reader/Makefile -------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../../..
index c11f42647d3a6e3c1a8e00807bd1aa1173ae0106..cb5b3f6c59d5513c58585ae41baa7a07e05d7865 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/CodeGen/SelectionDAG/Makefile -------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = LLVMAsmPrinter
index 29158e2dde787390cbe34c273dfb07334c7814b1..4ab3e3c0013ebc3f4b56fa9110e32d9c13f311a0 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/CodeGen/Makefile --------------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
index b235e1311e87993326188c140557a527e4ab37ec..185222ade98e81bd9838ec8252f5739dcfc5b9f4 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/CodeGen/SelectionDAG/Makefile -------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = LLVMSelectionDAG
index 7eb4485a6e87d73aa2ee581a6df8ab734771ff13..8290e3020fefc71fedb3b39691f8c38b58c6be13 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Debugger/Makefile -------------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
index deb49691a13579e2876c68771b1a904a7b12d5f3..5f937c3ad6f29be8459382ba825fdb20bddce16b 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/ExecutionEngine/Interpreter/Makefile ------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = LLVMInterpreter
index 66e06a9fd2865c9e6a08e0aa1bcdc29904694c0e..e2c9c61e88faa568f298cd5e241e67f0f3d15809 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/ExecutionEngine/JIT/Makefile --------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = LLVMJIT
index 1c5a6307a9eee3209beab3e574533e248305e96b..e0e050e89728b0f8645825f4f04228f23eec996e 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/ExecutionEngine/Makefile ------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../..
 LIBRARYNAME = LLVMExecutionEngine
index 37f0f01a78578c9f16aeca6c40d8463595b1ffc4..19e646b7483020ae57f1198d7e8b6ec06d76b2c6 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Linker/Makefile ---------------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
index 522295937b3470a33360bff327dba5a5611c2d75..4ad0763f97aaa2b214476c987bf36165b5514bd1 100644 (file)
@@ -1,15 +1,15 @@
 ##===- lib/Makefile ----------------------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ..
 
 PARALLEL_DIRS = VMCore AsmParser Bitcode Archive Analysis Transforms CodeGen \
-                Target ExecutionEngine Debugger Linker 
+                Target ExecutionEngine Debugger Linker
 
 include $(LEVEL)/Makefile.common
 
index 7f76ed702d2fdb616beaecc9bb0a151171a6ba85..48c21f4fd9e0e7e6437c5db8ae5a62cea5a45aee 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Support/Makefile --------------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
index fe5bcece7eab178a60de483c1b15c98bbdffa5a7..49704c3c625a6a03fd35169f2ae5866b66278008 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/System/Makefile ---------------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
index 4063036f5447ae660da9ac22079c04f44465ac3d..ce36cec47b6e2e80e5bee3d129beffb4853ecd7f 100644 (file)
@@ -1,15 +1,15 @@
 ##===- lib/Target/ARM/Makefile -----------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../../..
 LIBRARYNAME = LLVMARMAsmPrinter
 
-# Hack: we need to include 'main' arm target directory to grab private headers 
+# Hack: we need to include 'main' arm target directory to grab private headers
 CPPFLAGS = -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
 
 include $(LEVEL)/Makefile.common
index 532a3f9f036de69b211878995c432b2a6339f7b9..c5b3e946695b73f506cfa264d343ab8216a55e30 100644 (file)
@@ -1,15 +1,15 @@
 ##===- lib/Target/Alpha/Makefile ---------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../../..
 LIBRARYNAME = LLVMAlphaAsmPrinter
 
-# Hack: we need to include 'main' alpha target directory to grab private headers 
+# Hack: we need to include 'main' alpha target directory to grab private headers
 CPPFLAGS = -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
 
 include $(LEVEL)/Makefile.common
index 14c91f4da63409445f1c3c911b25bad1f28532ed..d6c82c7d7435cd17eeadd9ae16717c43b4933022 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Target/Alpha/Makefile -------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = LLVMAlphaCodeGen
index 511e320a8f145e8cf646740ce8d5879ef118167f..336de0c6f440b3cc1228d619b14aed8ccad242a7 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Target/CBackend/Makefile ------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../../..
index 0b05b98fcd461fc2d03a1bb145185819800340c7..dd56df71a5dee65815feeaf33e696e32430bdedb 100644 (file)
@@ -1,5 +1,5 @@
 ##===- lib/Target/CellSPU/Makefile -------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
index d12395f57145b084ab1913a5417883ff507b511b..a460db3cfeda8b2703a32e470b74b11dc064ae63 100644 (file)
@@ -1,5 +1,5 @@
 ##===- lib/Target/CellSPU/Makefile -------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
index e607c636e9ae101b6af8a0f0c7ff1d74268a1c52..ca7e1a82c8089aeadf24f76964a9aae16a0983d0 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Target/CppBackend/Makefile --- ------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../../..
index b0f41c3b2c0b43b4642870d9e06e6f22916c2c6b..87616dae9873686eed3ea5bdd831d53f180f3f59 100644 (file)
@@ -3,7 +3,7 @@
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = LLVMIA64
index b1aa377b99dabfeff1fec1df1b44ea1530eb8a62..50a360f1f868f520bdafad0ccad739568dfdb67f 100644 (file)
@@ -1,10 +1,10 @@
 #===- lib/Target/Makefile ----------------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
index fa9ffa3e01d7937c3f76ba871e9a5d373c00fd88..d3905b702f4ff799784c9dc3fbba82742b9cc548 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Target/Mips/Makefile ----------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = LLVMMips
index c429324cc2d13217571ae5b50a1a455f37a90a3f..3975849b3d8ece5291ce345269c687dfb16c37c2 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Target/PIC16/Makefile ---------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
-# This file is distributed under the University of Illinois Open Source 
+# This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = LLVMPIC16
index 125d8cfc0098b9dc10e133b5e2d15770db2599a1..269ef920443361133ca1cc056301f946af83e730 100644 (file)
@@ -1,15 +1,15 @@
 ##===- lib/Target/PowerPC/AsmPrinter/Makefile --------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../../..
 LIBRARYNAME = LLVMPowerPCAsmPrinter
 
-# Hack: we need to include 'main' PowerPC target directory to grab private headers 
+# Hack: we need to include 'main' PowerPC target directory to grab private headers
 CPPFLAGS = -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
 
 include $(LEVEL)/Makefile.common
index 6be39b09e194a40ed1a9595ab11cc8b29a9ee7b7..db688970e9e7169fc02b62ac92efde7789c743c2 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Target/PowerPC/Makefile -------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = LLVMPowerPCCodeGen
index e71527d02432d4a336ad499c58c1b607bbfaf7ca..f12a6ac39891c65df5a60044525e631d0a0bad8a 100644 (file)
@@ -1,15 +1,15 @@
 ##===- lib/Target/Sparc/Makefile ---------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../../..
 LIBRARYNAME = LLVMSparcAsmPrinter
 
-# Hack: we need to include 'main' Sparc target directory to grab private headers 
+# Hack: we need to include 'main' Sparc target directory to grab private headers
 CPPFLAGS = -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
 
 include $(LEVEL)/Makefile.common
index 876eb40b8a8507d498f899931f2f9af615d9debc..fdf6afaee0768e282962095ff947b93f1770d41e 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Target/Sparc/Makefile ---------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = LLVMSparcCodeGen
index ba75b43a8ae1ccf36933fbf298ad344124385f9e..ba89ac69bf68e2a7c259eca7a03355f310a6aecb 100644 (file)
@@ -1,15 +1,15 @@
 ##===- lib/Target/X86/Makefile -----------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../../..
 LIBRARYNAME = LLVMX86AsmPrinter
 
-# Hack: we need to include 'main' x86 target directory to grab private headers 
+# Hack: we need to include 'main' x86 target directory to grab private headers
 CPPFLAGS = -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
 
 include $(LEVEL)/Makefile.common
index cb3f0ac299f1028546c96eb9d266ba4454a1e020..44f1c5d5a509a4e566d938fe6879e87fd84db41f 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Target/X86/Makefile -----------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = LLVMX86CodeGen
index 1b4fbd9d70be74846c1b2dc0886aaef3b81043bf..568df70ab63a93c3cd74e1fead5e16f6a5e236d3 100644 (file)
@@ -1,5 +1,5 @@
 ##===- lib/Target/XCore/Makefile ---------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
index 6ca5774de4206c7b50b01b1fe7f7c16e2a9ed5a3..c5e75d43af65ec7ac6913bc8b4c73530a8c67a75 100644 (file)
@@ -1,16 +1,16 @@
 ##===- lib/Transforms/Hello/Makefile -----------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../../..
 LIBRARYNAME = LLVMHello
 LOADABLE_MODULE = 1
-USEDLIBS = 
+USEDLIBS =
 
 include $(LEVEL)/Makefile.common
 
index 77a20c0264ec1f46055776a1533def34aea2cce4..5c42374139aaa2e46daf55e04ca355712c2ee70d 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Transforms/IPO/Makefile -------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../../..
index b1f709c595b6c52f10ff0d55cf4d1385944a1dae..6cbc7a9cd88af95e66779c4728237332168c29ec 100644 (file)
@@ -1,14 +1,14 @@
 ##===- lib/Transforms/Instrumentation/Makefile -------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../../..
-LIBRARYNAME = LLVMInstrumentation 
+LIBRARYNAME = LLVMInstrumentation
 BUILD_ARCHIVE = 1
 
 include $(LEVEL)/Makefile.common
index bf9599ad53b5b7af7149e879716b4a2c5fa89424..bfdb2bf81d9808f32e98caa2761514d5a6906a75 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Transforms/Makefile -----------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
index b091f342d58dc8968a8808750867b82dbbce4a8d..cc42fd00ac7da94a4dcce9ae5219fe9943a61be2 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Transforms/Scalar/Makefile ----------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../../..
index 09ff745a1b52f2a2e0711432a9770319772e6537..d1e9336d67f029be8f17b8c5cc9828d784588c10 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/Transforms/Utils/Makefile -----------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ../../..
index 59062a18038beb6c808f406de489cc9ea35a90d1..e9d3dc879665ef4208abdc294a59c94625097408 100644 (file)
@@ -1,10 +1,10 @@
 ##===- lib/VMCore/Makefile ------------------------------*- Makefile -*-===##
-# 
+#
 #                     The LLVM Compiler Infrastructure
 #
 # This file is distributed under the University of Illinois Open Source
 # License. See LICENSE.TXT for details.
-# 
+#
 ##===----------------------------------------------------------------------===##
 LEVEL = ../..
 LIBRARYNAME = LLVMCore