freebsd-dev/usr.bin/clang/llvm-objdump/Makefile
Ed Maste 801cfbaa3f llvm-objdump: initial man page
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
2018-11-26 14:34:30 +00:00

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"