diff options
author | Chris Lattner <sabre@nondot.org> | 2001-09-07 22:59:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-09-07 22:59:25 +0000 |
commit | c9744e7f269ec8003b64c39c6c9e62f0b6c33a5a (patch) | |
tree | 70171baa0239c3fe93146e5b958366d6b5124c01 /lib/ExecutionEngine/Makefile | |
parent | f074cfc59e058b4ccee260f5434c6af4c50487af (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 'lib/ExecutionEngine/Makefile')
-rw-r--r-- | lib/ExecutionEngine/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/ExecutionEngine/Makefile b/lib/ExecutionEngine/Makefile index bf4483f5b4..9cf483c479 100644 --- a/lib/ExecutionEngine/Makefile +++ b/lib/ExecutionEngine/Makefile @@ -1,11 +1,6 @@ LEVEL = ../.. -include $(LEVEL)/Makefile.common +TOOLNAME = lli +USEDLIBS = opt bcreader bcwriter vmcore asmwriter analysis support target -all:: lli -clean:: - rm -f lli +include $(LEVEL)/Makefile.common -lli : $(ObjectsG) - $(LinkG) -o $@ $(ObjectsG) \ - -lopt -lbcreader -lbcwriter \ - -lvmcore -lasmwriter -lanalysis -lsupport -ltarget |