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

Removed trailing whitespace from Makefiles.

llvm-svn: 61991
This commit is contained in:
Misha Brukman 2009-01-09 16:44:42 +00:00
parent f6b520e88a
commit 71c7e40966
45 changed files with 102 additions and 102 deletions

View File

@ -1,10 +1,10 @@
#===-- Makefile.common - Common make rules for LLVM --------*- Makefile -*--===# #===-- Makefile.common - Common make rules for LLVM --------*- Makefile -*--===#
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
#===------------------------------------------------------------------------===# #===------------------------------------------------------------------------===#
# #
# This file is included by all of the LLVM makefiles. This file defines common # 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 following functionality can be set by setting incoming variables.
# The variable $(LEVEL) *must* be set: # The variable $(LEVEL) *must* be set:
# #
# 1. LEVEL - The level of the current subdirectory from the top of the # 1. LEVEL - The level of the current subdirectory from the top of the
# source directory. This level should be expressed as a path, for # source directory. This level should be expressed as a path, for
# example, ../.. for two levels deep. # example, ../.. for two levels deep.
# #
# 2. DIRS - A list of subdirectories to be built. Fake targets are set up # 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. # built, which are then built in any order.
# #
# 4. Source - If specified, this sets the source code filenames. If this # 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 # in the current directory. Also, if you want to build files in addition
# to the local files, you can use the ExtraSource variable # 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 # Configuration file to set paths specific to local installation of LLVM
# #
ifndef LLVM_OBJ_ROOT ifndef LLVM_OBJ_ROOT
include $(LEVEL)/Makefile.config include $(LEVEL)/Makefile.config
else else

View File

@ -4,7 +4,7 @@
# #
# 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. # License. See LICENSE.TXT for details.
# #
#===------------------------------------------------------------------------===# #===------------------------------------------------------------------------===#
# #
# This file is included by Makefile.common. It defines paths and other # This file is included by Makefile.common. It defines paths and other
@ -150,7 +150,7 @@ TAR := @TAR@
YACC := @YACC@ YACC := @YACC@
# Paths to miscellaneous programs we hope are present but might not be # Paths to miscellaneous programs we hope are present but might not be
PERL := @PERL@ PERL := @PERL@
BZIP2 := @BZIP2@ BZIP2 := @BZIP2@
DOT := @DOT@ DOT := @DOT@
DOXYGEN := @DOXYGEN@ DOXYGEN := @DOXYGEN@
@ -207,12 +207,12 @@ OBJ_ROOT := .
# make command line (ie, make ENABLE_PROFILING=1): # make command line (ie, make ENABLE_PROFILING=1):
# When ENABLE_OPTIMIZED is enabled, LLVM code is optimized and output is put # 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. # output is put in the "Debug" directories.
#ENABLE_OPTIMIZED = 1 #ENABLE_OPTIMIZED = 1
@ENABLE_OPTIMIZED@ @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. # exclude assertion checks, otherwise they are included.
#DISABLE_ASSERTIONS = 1 #DISABLE_ASSERTIONS = 1
@DISABLE_ASSERTIONS@ @DISABLE_ASSERTIONS@

View File

@ -1,10 +1,10 @@
##===- lib/Analysis/IPA/Makefile ---------------------------*- Makefile -*-===## ##===- lib/Analysis/IPA/Makefile ---------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..

View File

@ -1,10 +1,10 @@
##===- lib/Analysis/Makefile -------------------------------*- Makefile -*-===## ##===- lib/Analysis/Makefile -------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../.. LEVEL = ../..

View File

@ -1,16 +1,16 @@
##===- lib/Archive/Makefile --------------------------------*- Makefile -*-===## ##===- lib/Archive/Makefile --------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../.. LEVEL = ../..
LIBRARYNAME = LLVMArchive 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. # included.
BUILD_ARCHIVE := 1 BUILD_ARCHIVE := 1

View File

@ -1,10 +1,10 @@
##===- lib/AsmParser/Makefile ------------------------------*- Makefile -*-===## ##===- lib/AsmParser/Makefile ------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../.. LEVEL = ../..

View File

@ -1,10 +1,10 @@
##===- lib/Bitcode/Makefile --------------------------------*- Makefile -*-===## ##===- lib/Bitcode/Makefile --------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../.. LEVEL = ../..

View File

@ -1,10 +1,10 @@
##===- lib/Bitcode/Reader/Makefile -------------------------*- Makefile -*-===## ##===- lib/Bitcode/Reader/Makefile -------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..

View File

@ -1,10 +1,10 @@
##===- lib/Bitcode/Reader/Makefile -------------------------*- Makefile -*-===## ##===- lib/Bitcode/Reader/Makefile -------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..

View File

@ -1,10 +1,10 @@
##===- lib/CodeGen/SelectionDAG/Makefile -------------------*- Makefile -*-===## ##===- lib/CodeGen/SelectionDAG/Makefile -------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..
LIBRARYNAME = LLVMAsmPrinter LIBRARYNAME = LLVMAsmPrinter

View File

@ -1,10 +1,10 @@
##===- lib/CodeGen/Makefile --------------------------------*- Makefile -*-===## ##===- lib/CodeGen/Makefile --------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../.. LEVEL = ../..

View File

@ -1,10 +1,10 @@
##===- lib/CodeGen/SelectionDAG/Makefile -------------------*- Makefile -*-===## ##===- lib/CodeGen/SelectionDAG/Makefile -------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..
LIBRARYNAME = LLVMSelectionDAG LIBRARYNAME = LLVMSelectionDAG

View File

@ -1,10 +1,10 @@
##===- lib/Debugger/Makefile -------------------------------*- Makefile -*-===## ##===- lib/Debugger/Makefile -------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../.. LEVEL = ../..

View File

@ -1,10 +1,10 @@
##===- lib/ExecutionEngine/Interpreter/Makefile ------------*- Makefile -*-===## ##===- lib/ExecutionEngine/Interpreter/Makefile ------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..
LIBRARYNAME = LLVMInterpreter LIBRARYNAME = LLVMInterpreter

View File

@ -1,10 +1,10 @@
##===- lib/ExecutionEngine/JIT/Makefile --------------------*- Makefile -*-===## ##===- lib/ExecutionEngine/JIT/Makefile --------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..
LIBRARYNAME = LLVMJIT LIBRARYNAME = LLVMJIT

View File

@ -1,10 +1,10 @@
##===- lib/ExecutionEngine/Makefile ------------------------*- Makefile -*-===## ##===- lib/ExecutionEngine/Makefile ------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../.. LEVEL = ../..
LIBRARYNAME = LLVMExecutionEngine LIBRARYNAME = LLVMExecutionEngine

View File

@ -1,10 +1,10 @@
##===- lib/Linker/Makefile ---------------------------------*- Makefile -*-===## ##===- lib/Linker/Makefile ---------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../.. LEVEL = ../..

View File

@ -1,15 +1,15 @@
##===- lib/Makefile ----------------------------------------*- Makefile -*-===## ##===- lib/Makefile ----------------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = .. LEVEL = ..
PARALLEL_DIRS = VMCore AsmParser Bitcode Archive Analysis Transforms CodeGen \ PARALLEL_DIRS = VMCore AsmParser Bitcode Archive Analysis Transforms CodeGen \
Target ExecutionEngine Debugger Linker Target ExecutionEngine Debugger Linker
include $(LEVEL)/Makefile.common include $(LEVEL)/Makefile.common

View File

@ -1,10 +1,10 @@
##===- lib/Support/Makefile --------------------------------*- Makefile -*-===## ##===- lib/Support/Makefile --------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../.. LEVEL = ../..

View File

@ -1,10 +1,10 @@
##===- lib/System/Makefile ---------------------------------*- Makefile -*-===## ##===- lib/System/Makefile ---------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../.. LEVEL = ../..

View File

@ -1,15 +1,15 @@
##===- lib/Target/ARM/Makefile -----------------------------*- Makefile -*-===## ##===- lib/Target/ARM/Makefile -----------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../../.. LEVEL = ../../../..
LIBRARYNAME = LLVMARMAsmPrinter 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)/.. CPPFLAGS = -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
include $(LEVEL)/Makefile.common include $(LEVEL)/Makefile.common

View File

@ -1,15 +1,15 @@
##===- lib/Target/Alpha/Makefile ---------------------------*- Makefile -*-===## ##===- lib/Target/Alpha/Makefile ---------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../../.. LEVEL = ../../../..
LIBRARYNAME = LLVMAlphaAsmPrinter 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)/.. CPPFLAGS = -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
include $(LEVEL)/Makefile.common include $(LEVEL)/Makefile.common

View File

@ -1,10 +1,10 @@
##===- lib/Target/Alpha/Makefile -------------------------*- Makefile -*-===## ##===- lib/Target/Alpha/Makefile -------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..
LIBRARYNAME = LLVMAlphaCodeGen LIBRARYNAME = LLVMAlphaCodeGen

View File

@ -1,10 +1,10 @@
##===- lib/Target/CBackend/Makefile ------------------------*- Makefile -*-===## ##===- lib/Target/CBackend/Makefile ------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..

View File

@ -1,5 +1,5 @@
##===- lib/Target/CellSPU/Makefile -------------------------*- Makefile -*-===## ##===- lib/Target/CellSPU/Makefile -------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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

View File

@ -1,5 +1,5 @@
##===- lib/Target/CellSPU/Makefile -------------------------*- Makefile -*-===## ##===- lib/Target/CellSPU/Makefile -------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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

View File

@ -1,10 +1,10 @@
##===- lib/Target/CppBackend/Makefile --- ------------------*- Makefile -*-===## ##===- lib/Target/CppBackend/Makefile --- ------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..

View File

@ -3,7 +3,7 @@
# #
# 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..
LIBRARYNAME = LLVMIA64 LIBRARYNAME = LLVMIA64

View File

@ -1,10 +1,10 @@
#===- lib/Target/Makefile ----------------------------------*- Makefile -*-===## #===- lib/Target/Makefile ----------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../.. LEVEL = ../..

View File

@ -1,10 +1,10 @@
##===- lib/Target/Mips/Makefile ----------------------------*- Makefile -*-===## ##===- lib/Target/Mips/Makefile ----------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..
LIBRARYNAME = LLVMMips LIBRARYNAME = LLVMMips

View File

@ -1,10 +1,10 @@
##===- lib/Target/PIC16/Makefile ---------------------------*- Makefile -*-===## ##===- lib/Target/PIC16/Makefile ---------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..
LIBRARYNAME = LLVMPIC16 LIBRARYNAME = LLVMPIC16

View File

@ -1,15 +1,15 @@
##===- lib/Target/PowerPC/AsmPrinter/Makefile --------------*- Makefile -*-===## ##===- lib/Target/PowerPC/AsmPrinter/Makefile --------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../../.. LEVEL = ../../../..
LIBRARYNAME = LLVMPowerPCAsmPrinter 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)/.. CPPFLAGS = -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
include $(LEVEL)/Makefile.common include $(LEVEL)/Makefile.common

View File

@ -1,10 +1,10 @@
##===- lib/Target/PowerPC/Makefile -------------------------*- Makefile -*-===## ##===- lib/Target/PowerPC/Makefile -------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..
LIBRARYNAME = LLVMPowerPCCodeGen LIBRARYNAME = LLVMPowerPCCodeGen

View File

@ -1,15 +1,15 @@
##===- lib/Target/Sparc/Makefile ---------------------------*- Makefile -*-===## ##===- lib/Target/Sparc/Makefile ---------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../../.. LEVEL = ../../../..
LIBRARYNAME = LLVMSparcAsmPrinter 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)/.. CPPFLAGS = -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
include $(LEVEL)/Makefile.common include $(LEVEL)/Makefile.common

View File

@ -1,10 +1,10 @@
##===- lib/Target/Sparc/Makefile ---------------------------*- Makefile -*-===## ##===- lib/Target/Sparc/Makefile ---------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..
LIBRARYNAME = LLVMSparcCodeGen LIBRARYNAME = LLVMSparcCodeGen

View File

@ -1,15 +1,15 @@
##===- lib/Target/X86/Makefile -----------------------------*- Makefile -*-===## ##===- lib/Target/X86/Makefile -----------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../../.. LEVEL = ../../../..
LIBRARYNAME = LLVMX86AsmPrinter 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)/.. CPPFLAGS = -I$(PROJ_OBJ_DIR)/.. -I$(PROJ_SRC_DIR)/..
include $(LEVEL)/Makefile.common include $(LEVEL)/Makefile.common

View File

@ -1,10 +1,10 @@
##===- lib/Target/X86/Makefile -----------------------------*- Makefile -*-===## ##===- lib/Target/X86/Makefile -----------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..
LIBRARYNAME = LLVMX86CodeGen LIBRARYNAME = LLVMX86CodeGen

View File

@ -1,5 +1,5 @@
##===- lib/Target/XCore/Makefile ---------------------------*- Makefile -*-===## ##===- lib/Target/XCore/Makefile ---------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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

View File

@ -1,16 +1,16 @@
##===- lib/Transforms/Hello/Makefile -----------------------*- Makefile -*-===## ##===- lib/Transforms/Hello/Makefile -----------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..
LIBRARYNAME = LLVMHello LIBRARYNAME = LLVMHello
LOADABLE_MODULE = 1 LOADABLE_MODULE = 1
USEDLIBS = USEDLIBS =
include $(LEVEL)/Makefile.common include $(LEVEL)/Makefile.common

View File

@ -1,10 +1,10 @@
##===- lib/Transforms/IPO/Makefile -------------------------*- Makefile -*-===## ##===- lib/Transforms/IPO/Makefile -------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..

View File

@ -1,14 +1,14 @@
##===- lib/Transforms/Instrumentation/Makefile -------------*- Makefile -*-===## ##===- lib/Transforms/Instrumentation/Makefile -------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..
LIBRARYNAME = LLVMInstrumentation LIBRARYNAME = LLVMInstrumentation
BUILD_ARCHIVE = 1 BUILD_ARCHIVE = 1
include $(LEVEL)/Makefile.common include $(LEVEL)/Makefile.common

View File

@ -1,10 +1,10 @@
##===- lib/Transforms/Makefile -----------------------------*- Makefile -*-===## ##===- lib/Transforms/Makefile -----------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../.. LEVEL = ../..

View File

@ -1,10 +1,10 @@
##===- lib/Transforms/Scalar/Makefile ----------------------*- Makefile -*-===## ##===- lib/Transforms/Scalar/Makefile ----------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..

View File

@ -1,10 +1,10 @@
##===- lib/Transforms/Utils/Makefile -----------------------*- Makefile -*-===## ##===- lib/Transforms/Utils/Makefile -----------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../../.. LEVEL = ../../..

View File

@ -1,10 +1,10 @@
##===- lib/VMCore/Makefile ------------------------------*- Makefile -*-===## ##===- lib/VMCore/Makefile ------------------------------*- Makefile -*-===##
# #
# The LLVM Compiler Infrastructure # 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. # License. See LICENSE.TXT for details.
# #
##===----------------------------------------------------------------------===## ##===----------------------------------------------------------------------===##
LEVEL = ../.. LEVEL = ../..
LIBRARYNAME = LLVMCore LIBRARYNAME = LLVMCore