mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-13 10:02:38 +00:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
23 lines
386 B
Makefile
23 lines
386 B
Makefile
.include <src.opts.mk>
|
|
|
|
PACKAGE= elftoolchain
|
|
|
|
ELFTCDIR= ${SRCTOP}/contrib/elftoolchain
|
|
SIZEDIR= ${ELFTCDIR}/size
|
|
|
|
.PATH: ${SIZEDIR}
|
|
|
|
PROG= size
|
|
|
|
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>
|