mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
ARM EABI support is disabled by default and can be enabled by setting WITH_ARM_EABI when building, however only the kernel-toolchain target will work with this flag until the rest of the support is added.
17 lines
243 B
Makefile
17 lines
243 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.include "../Makefile.inc"
|
|
.include "../Makefile.ver"
|
|
|
|
.PATH: ${GCCDIR} ${GCCDIR}/doc
|
|
|
|
PROG= gcov
|
|
SRCS= gcov.c version.c errors.c
|
|
MAN= gcov.1
|
|
|
|
DPADD= ${LIBIBERTY}
|
|
LDADD= ${LIBIBERTY}
|
|
|
|
.include <bsd.prog.mk>
|