summaryrefslogtreecommitdiff
path: root/tools/llvm-nm/Makefile
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-10-16 04:43:15 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-10-16 04:43:15 +0000
commit972d3d7fff89c50612e86dfc8222da51bb23f387 (patch)
tree25db05fbdfa6292da1182c576fdd60ebb5d3ddee /tools/llvm-nm/Makefile
parent1630189e8cb9b85c843f07f0b27540499f62a088 (diff)
downloadllvm-972d3d7fff89c50612e86dfc8222da51bb23f387.tar.gz
llvm-972d3d7fff89c50612e86dfc8222da51bb23f387.tar.bz2
llvm-972d3d7fff89c50612e86dfc8222da51bb23f387.tar.xz
Okay, this is a little hack that "scratches an itch" of mine.
I dislike having to examine the output of "dis" to see what symbols are in a bytecode file. So, here is a first cut at a "nm" utility for llvm. Flame away.... :-) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9153 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm-nm/Makefile')
-rw-r--r--tools/llvm-nm/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/llvm-nm/Makefile b/tools/llvm-nm/Makefile
new file mode 100644
index 0000000000..eef5a0e2de
--- /dev/null
+++ b/tools/llvm-nm/Makefile
@@ -0,0 +1,5 @@
+LEVEL = ../..
+
+TOOLNAME = llvm-nm
+USEDLIBS = bcreader vmcore support.a
+include $(LEVEL)/Makefile.common