summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-10-22 03:35:04 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-10-22 03:35:04 +0000
commitcac731ecbe6a80e0c607ece2833525a92601db99 (patch)
tree0cd02e334e8e3395fcf1b76538cc512c03264bc6 /tools
parent9691a898c702b5ad6ec122dd38f8b4196316876c (diff)
downloadllvm-cac731ecbe6a80e0c607ece2833525a92601db99.tar.gz
llvm-cac731ecbe6a80e0c607ece2833525a92601db99.tar.bz2
llvm-cac731ecbe6a80e0c607ece2833525a92601db99.tar.xz
We won't use automake
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17155 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile.am14
-rw-r--r--tools/analyze/Makefile.am23
-rw-r--r--tools/bugpoint/Makefile.am29
-rw-r--r--tools/extract/Makefile.am18
-rw-r--r--tools/gccas/Makefile.am19
-rw-r--r--tools/gccld/Makefile.am19
-rw-r--r--tools/llc/Makefile.am23
-rw-r--r--tools/llee/Makefile.am23
-rw-r--r--tools/lli/Makefile.am53
-rw-r--r--tools/llvm-ar/Makefile.am17
-rw-r--r--tools/llvm-as/Makefile.am17
-rw-r--r--tools/llvm-bcanalyzer/Makefile.am18
-rw-r--r--tools/llvm-db/Makefile.am53
-rw-r--r--tools/llvm-dis/Makefile.am17
-rw-r--r--tools/llvm-ld/Makefile.am18
-rw-r--r--tools/llvm-link/Makefile.am17
-rw-r--r--tools/llvm-nm/Makefile.am17
-rw-r--r--tools/llvm-prof/Makefile.am18
-rw-r--r--tools/llvm-stub/Makefile.am14
-rw-r--r--tools/llvmc/Makefile.am21
-rw-r--r--tools/opt/Makefile.am21
21 files changed, 0 insertions, 469 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
deleted file mode 100644
index 64c50f44b9..0000000000
--- a/tools/Makefile.am
+++ /dev/null
@@ -1,14 +0,0 @@
-#===-- tools/Makefile.am ------------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-SUBDIRS = analyze llvmc bugpoint extract gccas gccld llvm-bcanalyzer llc \
- llee lli llvm-ar llvm-as llvm-db llvm-dis llvm-link llvm-nm \
- llvm-prof opt llvm-ld llvm-stub
diff --git a/tools/analyze/Makefile.am b/tools/analyze/Makefile.am
deleted file mode 100644
index 5598a155c4..0000000000
--- a/tools/analyze/Makefile.am
+++ /dev/null
@@ -1,23 +0,0 @@
-#===-- tools/analyze/Makefile.am ---------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = analyze
-
-analyze_SOURCES = \
- AnalysisWrappers.cpp \
- analyze.cpp \
- GraphPrinters.cpp
-
-analyze_LDADD = \
- $(call GETOBJS,AsmParser,BCReader,Analysis,IPA,DataStructure,ScalarOpts) \
- $(call GETLIBS,Transforms,Target,ScalarOpts,TransformUtils) \
- $(call GETOBJS,Core) \
- $(call GETLIBS,Support,System)
diff --git a/tools/bugpoint/Makefile.am b/tools/bugpoint/Makefile.am
deleted file mode 100644
index 600f854513..0000000000
--- a/tools/bugpoint/Makefile.am
+++ /dev/null
@@ -1,29 +0,0 @@
-#===-- tools/bugpoint/Makefile.am --------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = bugpoint
-
-bugpoint_SOURCES = \
- BugDriver.cpp \
- bugpoint.cpp \
- CrashDebugger.cpp \
- ExecutionDriver.cpp \
- ExtractFunction.cpp \
- Miscompilation.cpp \
- OptimizerDriver.cpp \
- TestPasses.cpp
-
-bugpoint_LDADD = \
- $(call GETOBJS,IPO,ScalarOpts,Analysis,Transforms,Instrument,ProfilePaths) \
- $(call GETOBJS,DataStructure,IPA) \
- $(call GETLIBS,Target) \
- $(call GETOBJS,TransformUtils,AsmParser,BCReader,BCWriter,Core) \
- $(call GETLIBS,Support,System)
diff --git a/tools/extract/Makefile.am b/tools/extract/Makefile.am
deleted file mode 100644
index 9af226a800..0000000000
--- a/tools/extract/Makefile.am
+++ /dev/null
@@ -1,18 +0,0 @@
-#===-- tools/extract/Makefile.am ---------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = extract
-
-extract_SOURCES = extract.cpp
-
-extract_LDADD = \
- $(call GETOBJS,BCReader,BCWriter,Core) \
- $(call GETLIBS,IPO,Target,Analysis,TransformUtils,IPA,Support,System)
diff --git a/tools/gccas/Makefile.am b/tools/gccas/Makefile.am
deleted file mode 100644
index 99f976bad6..0000000000
--- a/tools/gccas/Makefile.am
+++ /dev/null
@@ -1,19 +0,0 @@
-#===-- tools/gccas/Makefile.am -----------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = gccas
-
-gccas_SOURCES = gccas.cpp
-
-gccas_LDADD = \
- $(call GETOBJS,AsmParser,BCWriter,Core) \
- $(call GETLIBS,Transforms,IPO,IPA,ScalarOpts,Analysis,Target,TransformUtils) \
- $(call GETLIBS,Support,System)
diff --git a/tools/gccld/Makefile.am b/tools/gccld/Makefile.am
deleted file mode 100644
index 0f98ab1318..0000000000
--- a/tools/gccld/Makefile.am
+++ /dev/null
@@ -1,19 +0,0 @@
-#===-- tools/gccld/Makefile.am -----------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = gccld
-
-gccld_SOURCES = gccld.cpp GenerateCode.cpp Linker.cpp
-
-gccld_LDADD = \
- $(call GETLIBS,IPO,Transforms,ScalarOpts,Analysis,IPA,TransformUtils,Target) \
- $(call GETOBJS,BCReader,BCWriter,Core) \
- $(call GETLIBS,Support,System)
diff --git a/tools/llc/Makefile.am b/tools/llc/Makefile.am
deleted file mode 100644
index 6aacba6d10..0000000000
--- a/tools/llc/Makefile.am
+++ /dev/null
@@ -1,23 +0,0 @@
-#===-- tools/llc/Makefile.am -------------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = llc
-
-llc_SOURCES = llc.cpp
-
-llc_LDADD = \
- $(call GETOBJS,CWriter,PowerPC,SparcV9,X86,Skeleton,SelectionDAG) \
- $(call GETOBJS,SparcV9RegAlloc,SparcV9InstrSched,CodeGen) \
- $(call GETLIBS,Target) \
- $(call GETOBJS,SparcV9LiveVar) \
- $(call GETLIBS,IPA,Transforms,ScalarOpts,Analysis,TransformUtils) \
- $(call GETOBJS,BCReader,BCWriter,Core) \
- $(call GETLIBS,Support,System)
diff --git a/tools/llee/Makefile.am b/tools/llee/Makefile.am
deleted file mode 100644
index d085c87c36..0000000000
--- a/tools/llee/Makefile.am
+++ /dev/null
@@ -1,23 +0,0 @@
-#===-- tools/llee/Makefile.am ------------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-lib_LTLIBRARIES = libexecve.la
-
-libexecve_la_SOURCES = ExecveHandler.c StorageProxy.c SysUtils.c
-
-all: llee
-
-llee: Makefile
- echo exec env LD_PRELOAD=$(DESTLIBCURRENT)/libexecve$(SHLIBEXT) $$\* > $@
- chmod u+x $@
-
-clean:
- rm -f /llee
diff --git a/tools/lli/Makefile.am b/tools/lli/Makefile.am
deleted file mode 100644
index e310951f3d..0000000000
--- a/tools/lli/Makefile.am
+++ /dev/null
@@ -1,53 +0,0 @@
-#===-- tools/lli/Makefile.am -------------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = lli
-
-lli_SOURCES = lli.cpp
-
-THEOBJS = JIT CodeGen ExecutionEngine
-THELIBS =
-
-# You can enable the X86 JIT on a non-X86 host by setting the flag
-# ENABLE_X86_JIT on the make command line. If not, it will still be
-# enabled automagically on an X86 host.
-if ARCH_X86
- ENABLE_X86_JIT = 1
-endif
-
-# You can enable the Sparc JIT on a non-Sparc host by setting the flag
-# ENABLE_SPARC_JIT on the make command line. If not, it will still be
-# enabled automagically on an Sparc host.
-if ARCH_SPARC
- ENABLE_SPARC_JIT = 1
-endif
-
-# What the X86 JIT requires
- ifdef ENABLE_X86_JIT
- CPPFLAGS += -DENABLE_X86_JIT
- THEOBJS += X86 SelectionDAG
- endif
-
-# What the Sparc JIT requires
- ifdef ENABLE_SPARC_JIT
- CPPFLAGS += -DENABLE_SPARC_JIT
- THEOBJS += SparcV9 SparcV9InstrSched SparcV9LiveVar SparcV9RegAlloc
- THEOBJS += ProfilePaths BCWriter
- THELIBS += Instrument Transforms IPO IPA DataStructure
- endif
-
-lli_LDADD = \
- $(call GETOBJS,Interpreter,$(THEOBJS)) \
- $(call GETLIBS,$(THELIBS)) \
- $(call GETOBJS,ScalarOpts) \
- $(call GETLIBS,Analysis,TransformUtils,Target) \
- $(call GETOBJS,BCReader,Core) \
- $(call GETLIBS,Support,System)
diff --git a/tools/llvm-ar/Makefile.am b/tools/llvm-ar/Makefile.am
deleted file mode 100644
index 1bc5844e73..0000000000
--- a/tools/llvm-ar/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-#===-- tools/llvm-ar/Makefile.am ---------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = llvm-ar
-
-llvm_ar_SOURCES = llvm-ar.cpp
-llvm_ar_LDADD = \
- $(call GETOBJS,BCReader,Core) \
- $(call GETLIBS,Support,System)
diff --git a/tools/llvm-as/Makefile.am b/tools/llvm-as/Makefile.am
deleted file mode 100644
index 31a8487159..0000000000
--- a/tools/llvm-as/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-#===-- tools/llvm-as/Makefile.am ---------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = llvm-as
-
-llvm_as_SOURCES = llvm-as.cpp
-llvm_as_LDADD = \
- $(call GETOBJS,AsmParser,BCWriter,Core) \
- $(call GETLIBS,Support,System)
diff --git a/tools/llvm-bcanalyzer/Makefile.am b/tools/llvm-bcanalyzer/Makefile.am
deleted file mode 100644
index cb83e9c693..0000000000
--- a/tools/llvm-bcanalyzer/Makefile.am
+++ /dev/null
@@ -1,18 +0,0 @@
-#===-- tools/llvm-bcanalyzer/Makefile.am -------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = llvm-bcanalyzer
-
-llvm_bcanalyzer_SOURCES = llvm-bcanalyzer.cpp
-
-llvm_bcanalyzer_LDADD = \
- $(call GETOBJS,BCReader,Core) \
- $(call GETLIBS,Support,System)
diff --git a/tools/llvm-db/Makefile.am b/tools/llvm-db/Makefile.am
deleted file mode 100644
index 36bfdc46a6..0000000000
--- a/tools/llvm-db/Makefile.am
+++ /dev/null
@@ -1,53 +0,0 @@
-#===-- tools/llvm-db/Makefile.am ---------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = llvm-db
-
-llvm_db_SOURCES = CLIDebugger.cpp Commands.cpp llvm-db.cpp
-
-THEOBJS = JIT CodeGen ExecutionEngine
-THELIBS =
-
-# You can enable the X86 JIT on a non-X86 host by setting the flag
-# ENABLE_X86_JIT on the make command line. If not, it will still be
-# enabled automagically on an X86 host.
-if ARCH_X86
- ENABLE_X86_JIT = 1
-endif
-
-# You can enable the Sparc JIT on a non-Sparc host by setting the flag
-# ENABLE_SPARC_JIT on the make command line. If not, it will still be
-# enabled automagically on an Sparc host.
-if ARCH_SPARC
- ENABLE_SPARC_JIT = 1
-endif
-
-# What the X86 JIT requires
- ifdef ENABLE_X86_JIT
- CPPFLAGS += -DENABLE_X86_JIT
- THEOBJS += X86 SelectionDAG
- endif
-
-# What the Sparc JIT requires
- ifdef ENABLE_SPARC_JIT
-# CPPFLAGS += -DENABLE_SPARC_JIT
-# THEOBJS += SparcV9 SparcV9InstrSched SparcV9LiveVar SparcV9RegAlloc
-# THEOBJS += ProfilePaths BCWriter
-# THELIBS += Instrument Transforms IPO IPA DataStructure
- endif
-
-llvm_db_LDADD = \
- $(call GETOBJS,Interpreter,$(THEOBJS)) \
- $(call GETLIBS,$(THELIBS)) \
- $(call GETOBJS,ScalarOpts) \
- $(call GETLIBS,Analysis,TransformUtils,Target) \
- $(call GETOBJS,Debugger,BCReader,Core) \
- $(call GETLIBS,Support,Target,System)
diff --git a/tools/llvm-dis/Makefile.am b/tools/llvm-dis/Makefile.am
deleted file mode 100644
index de606dd06c..0000000000
--- a/tools/llvm-dis/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-#===-- tools/llvm-dis/Makefile.am --------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = llvm-dis
-
-llvm_dis_SOURCES = llvm-dis.cpp
-llvm_dis_LDADD = \
- $(call GETOBJS,BCReader,Core) \
- $(call GETLIBS,Support,System)
diff --git a/tools/llvm-ld/Makefile.am b/tools/llvm-ld/Makefile.am
deleted file mode 100644
index c6aa9931c9..0000000000
--- a/tools/llvm-ld/Makefile.am
+++ /dev/null
@@ -1,18 +0,0 @@
-#===-- tools/llvm-ld/Makefile.am ---------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = llvm-ld
-
-llvm_ld_SOURCES = GenerateCode.cpp Linker.cpp llvm-ld.cpp
-llvm_ld_LDADD = \
- $(call GETLIBS,IPO,Transforms,ScalarOpts,Analysis,IPA,TransformUtils,Target) \
- $(call GETOBJS,BCReader,BCWriter,Core) \
- $(call GETLIBS,Support,System)
diff --git a/tools/llvm-link/Makefile.am b/tools/llvm-link/Makefile.am
deleted file mode 100644
index cc285a9a94..0000000000
--- a/tools/llvm-link/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-#===-- tools/llvm-link/Makefile.am -------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = llvm-link
-
-llvm_link_SOURCES = llvm-link.cpp
-llvm_link_LDADD = \
- $(call GETOBJS,BCReader,BCWriter,Core) \
- $(call GETLIBS,Support,System)
diff --git a/tools/llvm-nm/Makefile.am b/tools/llvm-nm/Makefile.am
deleted file mode 100644
index d04c760764..0000000000
--- a/tools/llvm-nm/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-#===-- tools/llvm-nm/Makefile.am ---------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = llvm-nm
-
-llvm_nm_SOURCES = llvm-nm.cpp
-llvm_nm_LDADD = \
- $(call GETOBJS,BCReader,Core) \
- $(call GETLIBS,Support,System)
diff --git a/tools/llvm-prof/Makefile.am b/tools/llvm-prof/Makefile.am
deleted file mode 100644
index 2465361ec9..0000000000
--- a/tools/llvm-prof/Makefile.am
+++ /dev/null
@@ -1,18 +0,0 @@
-#===-- tools/llvm-prof/Makefile.am -------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = llvm-prof
-
-llvm_prof_SOURCES = llvm-prof.cpp
-llvm_prof_LDADD = \
- $(call GETLIBS,Analysis) \
- $(call GETOBJS,BCReader,Core) \
- $(call GETLIBS,Support,System)
diff --git a/tools/llvm-stub/Makefile.am b/tools/llvm-stub/Makefile.am
deleted file mode 100644
index aa5119cc6c..0000000000
--- a/tools/llvm-stub/Makefile.am
+++ /dev/null
@@ -1,14 +0,0 @@
-#===-- tools/llvm-stub/Makefile.am ------------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = llvm-stub
-
-llvm_stub_SOURCES = llvm-stub.c
diff --git a/tools/llvmc/Makefile.am b/tools/llvmc/Makefile.am
deleted file mode 100644
index 125e041aea..0000000000
--- a/tools/llvmc/Makefile.am
+++ /dev/null
@@ -1,21 +0,0 @@
-#===-- tools/llvmc/Makefile.am -----------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = llvmc
-
-BUILT_SOURCES = ConfigLexer.cpp
-
-llvmc_SOURCES = CompilerDriver.cpp Configuration.cpp llvmc.cpp $(BUILT_SOURCES)
-
-#dist_EXTRA_llvmc_SOURCES = ConfigLexer.l
-
-llvmc_LDADD = $(call GETOBJS,BCReader,Core) \
- $(call GETLIBS,Support,System)
diff --git a/tools/opt/Makefile.am b/tools/opt/Makefile.am
deleted file mode 100644
index 9c37905ded..0000000000
--- a/tools/opt/Makefile.am
+++ /dev/null
@@ -1,21 +0,0 @@
-#===-- tools/opt/Makefile.am -------------------------------*- Makefile -*--===#
-#
-# The LLVM Compiler Infrastructure
-#
-# This file was developed by Reid Spencer and is distributed under the
-# University of Illinois Open Source License. See LICENSE.TXT for details.
-#
-#===------------------------------------------------------------------------===#
-
-include $(top_srcdir)/Makefile_config
-
-bin_PROGRAMS = opt
-
-opt_SOURCES = opt.cpp
-
-opt_LDADD = \
- $(call GETOBJS,BCReader,BCWriter,Instrument,ProfilePaths,ScalarOpts) \
- $(call GETOBJS,IPO,IPA,DataStructure,Transforms) \
- $(call GETLIBS,Target) \
- $(call GETOBJS,Analysis,TransformUtils,Core) \
- $(call GETLIBS,Support,System)