summaryrefslogtreecommitdiff
path: root/tools/llc
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-09-07 22:59:25 +0000
committerChris Lattner <sabre@nondot.org>2001-09-07 22:59:25 +0000
commitc9744e7f269ec8003b64c39c6c9e62f0b6c33a5a (patch)
tree70171baa0239c3fe93146e5b958366d6b5124c01 /tools/llc
parentf074cfc59e058b4ccee260f5434c6af4c50487af (diff)
Make use of the new TOOLNAME/USEDLIBS options provided in Makefile.common
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@501 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llc')
-rw-r--r--tools/llc/Makefile12
1 files changed, 3 insertions, 9 deletions
diff --git a/tools/llc/Makefile b/tools/llc/Makefile
index ea6ac95e63c..e0cce9a97a6 100644
--- a/tools/llc/Makefile
+++ b/tools/llc/Makefile
@@ -1,12 +1,6 @@
LEVEL = ../..
-include $(LEVEL)/Makefile.common
+TOOLNAME = llc
+USEDLIBS = sched select sparc target opt livevar bcreader vmcore asmwriter analysis support
-all:: llc
-clean::
- rm -f llc
+include $(LEVEL)/Makefile.common
-llc : $(ObjectsG) $(LibsG)
- $(LinkG) -o $@ $(ObjectsG) \
- -lsched -lselect -lsparc -ltarget \
- -lopt -llivevar -lbcreader -lbcwriter \
- -lvmcore -lasmwriter -lanalysis -lsupport