mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
Move LLVM ar, nm, and size. Also move elftoolchain strings, which should have already been there. The remaining LLVM utilities (including strings) stay in -clang for now since they're links to other executables. Reviewed by: des, dim Differential Revision: https://reviews.freebsd.org/D51583
21 lines
369 B
Makefile
21 lines
369 B
Makefile
.include <src.opts.mk>
|
|
|
|
PACKAGE= toolchain
|
|
|
|
ELFTCDIR= ${SRCTOP}/contrib/elftoolchain
|
|
|
|
.PATH: ${ELFTCDIR}/strings
|
|
|
|
PROG= strings
|
|
|
|
LIBADD= elftc elf
|
|
|
|
.if ${MK_CASPER} != "no" && !defined(BOOTSTRAPPING) && !defined(NXB_TARGET)
|
|
LIBADD+= casper
|
|
LIBADD+= cap_fileargs
|
|
CFLAGS+= -DWITH_CASPER
|
|
.endif
|
|
|
|
CFLAGS+=-I${ELFTCDIR}/libelftc -I${ELFTCDIR}/common
|
|
|
|
.include <bsd.prog.mk>
|