OSDN Git Service

Added LLVM copyright notice to Makefiles.
authorJohn Criswell <criswell@uiuc.edu>
Mon, 20 Oct 2003 22:26:57 +0000 (22:26 +0000)
committerJohn Criswell <criswell@uiuc.edu>
Mon, 20 Oct 2003 22:26:57 +0000 (22:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9312 91177308-0d34-0410-b5e6-96231b3b80d8

37 files changed:
Makefile
lib/Analysis/DataStructure/Makefile
lib/Analysis/IPA/Makefile
lib/Analysis/LiveVar/Makefile
lib/Analysis/Makefile
lib/AsmParser/Makefile
lib/Bytecode/Makefile
lib/Bytecode/Reader/Makefile
lib/Bytecode/Writer/Makefile
lib/CodeGen/InstrSched/Makefile
lib/CodeGen/InstrSelection/Makefile
lib/CodeGen/Makefile
lib/CodeGen/ModuloScheduling/Makefile
lib/CodeGen/RegAlloc/Makefile
lib/CodeGen/SelectionDAG/Makefile
lib/ExecutionEngine/Interpreter/Makefile
lib/ExecutionEngine/JIT/Makefile
lib/ExecutionEngine/Makefile
lib/Makefile
lib/Support/Makefile
lib/Target/CBackend/Makefile
lib/Target/Makefile
lib/Target/SparcV9/InstrSched/Makefile
lib/Target/SparcV9/InstrSelection/Makefile
lib/Target/SparcV9/LiveVar/Makefile
lib/Target/SparcV9/Makefile
lib/Target/SparcV9/ModuloScheduling/Makefile
lib/Target/SparcV9/RegAlloc/Makefile
lib/Target/X86/Makefile
lib/Transforms/Hello/Makefile
lib/Transforms/IPO/Makefile
lib/Transforms/Instrumentation/Makefile
lib/Transforms/Instrumentation/ProfilePaths/Makefile
lib/Transforms/Makefile
lib/Transforms/Scalar/Makefile
lib/Transforms/Utils/Makefile
lib/VMCore/Makefile

index 71534d1..ade36fb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,11 @@
+##===- ./Makefile ------------------------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = .
 DIRS = lib/Support utils lib tools runtime
 OPTIONAL_DIRS = projects
index 3c4c7e2..c059854 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Analysis/DataStructure/Makefile -----------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = datastructure
 BUILD_ARCHIVE = 1
index 80ef418..753f329 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Analysis/IPA/Makefile ---------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = ipa
 BUILD_ARCHIVE = 1
index 7fdf34d..8506e19 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Analysis/LiveVar/Makefile -----------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = livevar
 
index d544a05..71f99e4 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Analysis/Makefile -------------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../..
 LIBRARYNAME = analysis
 PARALLEL_DIRS = LiveVar IPA DataStructure
index 22e4357..b5e6fb9 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/AsmParser/Makefile ------------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
 
index 75d4f7c..92494b2 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Bytecode/Makefile -------------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../..
 DIRS = Reader Writer
 
index b48b4d3..82e53d2 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Bytecode/Reader/Makefile ------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = bcreader
 
index 76c52f4..44bfb46 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Bytecode/Writer/Makefile ------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = bcwriter
 
index 7ddca32..acc95d3 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/CodeGen/InstrSched/Makefile ---------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 
 DIRS  = 
index 0a85cb3..b1dd1af 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/CodeGen/InstrSelection/Makefile -----------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 
 DIRS  = 
index 224ac0c..4463921 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/CodeGen/Makefile ------------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../..
 PARALLEL_DIRS = InstrSelection InstrSched RegAlloc SelectionDAG
 LIBRARYNAME = codegen
index adbc021..febdbf8 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/CodeGen/ModuloScheduling/Makefile ---------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 
 DIRS  = 
index aa70f5a..6c4f50b 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/CodeGen/RegAlloc/Makefile -----------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 
 DIRS  = 
index 7ee0355..d3fc5a9 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/CodeGen/SelectionDAG/Makefile -------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 PARALLEL_DIRS =
 LIBRARYNAME = selectiondag
index 1a7d3bf..a219a4f 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/ExecutionEngine/Interpreter/Makefile ------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = lli-interpreter
 
index 235240f..761b951 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/ExecutionEngine/JIT/Makefile --------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = lli-jit
 
index 1c86863..a100b70 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/ExecutionEngine/Makefile ------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../..
 LIBRARYNAME = executionengine
 PARALLEL_DIRS = Interpreter JIT
index 1d9f309..b05061c 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Makefile ----------------------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ..
 
 PARALLEL_DIRS = VMCore Analysis Transforms AsmParser Bytecode CodeGen Target CWriter ExecutionEngine
index 7b263b7..0b66604 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Support/Makefile ------------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../..
 LIBRARYNAME = support
 BUILD_ARCHIVE = 1
index 3c08fe0..2e13bf7 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/CWriter/Makefile --------------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 
 LEVEL = ../..
 
index 32032a6..c4a1203 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Target/Makefile ------------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../..
 DIRS = Sparc X86
 LIBRARYNAME = target
index 7ddca32..acc95d3 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/CodeGen/InstrSched/Makefile ---------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 
 DIRS  = 
index 0a85cb3..b1dd1af 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/CodeGen/InstrSelection/Makefile -----------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 
 DIRS  = 
index 7fdf34d..8506e19 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Analysis/LiveVar/Makefile -----------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = livevar
 
index 444c46f..59db2d3 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Target/Sparc/Makefile ---------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = sparc
 
index adbc021..febdbf8 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/CodeGen/ModuloScheduling/Makefile ---------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 
 DIRS  = 
index aa70f5a..6c4f50b 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/CodeGen/RegAlloc/Makefile -----------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 
 DIRS  = 
index 87522ec..99c23f5 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Target/X86/Makefile ----------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = x86
 include $(LEVEL)/Makefile.common
index 0a4746d..4e54dec 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Transforms/Hello/Makefile -----------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = hello
 SHARED_LIBRARY = 1
index 0bc3f72..fe82fc1 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Transforms/IPO/Makefile -------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = ipo
 BUILD_ARCHIVE = 1
index a234923..e1831af 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Transforms/Instrumentation/Makefile -------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = instrument
 PARALLEL_DIRS = ProfilePaths 
index 91e1c2f..8deeeac 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Transforms/Instrumentation/ProfilePaths/Makefile -*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../../..
 LIBRARYNAME = profpaths
 
index 09ae44f..88a2ca2 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Transforms/Makefile -----------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../..
 PARALLEL_DIRS = Utils Instrumentation Scalar IPO
 LIBRARYNAME = transforms
index 9f73623..6ea90d1 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Transforms/Scalar/Makefile ----------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = scalaropts
 BUILD_ARCHIVE = 1
index 00e4170..f4da983 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/Transforms/Utils/Makefile -----------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../../..
 LIBRARYNAME = transformutils
 BUILD_ARCHIVE = 1
index b0c96e9..9fc1c96 100644 (file)
@@ -1,3 +1,11 @@
+##===- lib/VMCore/Makefile ------------------------------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file was developed by the LLVM research group and is distributed under
+# the University of Illinois Open Source License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
 LEVEL = ../..
 LIBRARYNAME = vmcore