summaryrefslogtreecommitdiff
path: root/tools/llvm-db
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/llvm-db
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/llvm-db')
-rw-r--r--tools/llvm-db/Makefile.am53
1 files changed, 0 insertions, 53 deletions
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)