diff options
author | Chris Lattner <sabre@nondot.org> | 2001-07-18 23:43:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-07-18 23:43:53 +0000 |
commit | a3c89162284d629ffa978d048f290b7a4a3c21e2 (patch) | |
tree | 541cb755b89f91ea33b280232a84ef4b721198d0 /tools/analyze/Makefile | |
parent | febb11f9af7057b2f9a7960a9852f4e9699f5c7c (diff) | |
download | external_llvm-a3c89162284d629ffa978d048f290b7a4a3c21e2.zip external_llvm-a3c89162284d629ffa978d048f290b7a4a3c21e2.tar.gz external_llvm-a3c89162284d629ffa978d048f290b7a4a3c21e2.tar.bz2 |
Fix clean target
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/analyze/Makefile')
-rw-r--r-- | tools/analyze/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/analyze/Makefile b/tools/analyze/Makefile index e8e191c..d624faf 100644 --- a/tools/analyze/Makefile +++ b/tools/analyze/Makefile @@ -3,7 +3,7 @@ include $(LEVEL)/Makefile.common all:: analyze clean :: - rm -f opt + rm -f analyze analyze : $(ObjectsG) Debug/.dir Depend/.dir $(LinkG) -o $@ $(ObjectsG) -lopt -lasmparser \ |