801cfbaa3f
Based on llvm-objdump's online documentation and usage information. This serves as a starting point; additional detail and cleanup still required. Also being submitted upstream in LLVM review D54864. I expect to use this bespoke copy while we have LLVM 6.0 or 7.0 in FreeBSD; when we update to LLVM 8.0 it should be upstream and we will switch to it. PR: 233437 Reviewed by: bcr (man formatting) Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D18309
15 lines
214 B
Makefile
15 lines
214 B
Makefile
# $FreeBSD$
|
|
|
|
PROG_CXX= llvm-objdump
|
|
|
|
SRCDIR= tools/llvm-objdump
|
|
SRCS+= COFFDump.cpp
|
|
SRCS+= ELFDump.cpp
|
|
SRCS+= MachODump.cpp
|
|
SRCS+= WasmDump.cpp
|
|
SRCS+= llvm-objdump.cpp
|
|
|
|
LIBADD+= z
|
|
|
|
.include "../llvm.prog.mk"
|