mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-26 13:05:18 +01:00
acc37ca1c1
This simplifies make logic/output While here, remove bogus CFLAGS which look for headers in cddl/lib/libumem. There aren't any source files there (just Makefiles) MFC after: 1 month Sponsored by: Dell EMC Isilon
23 lines
574 B
Makefile
23 lines
574 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/cddl/contrib/opensolaris/tools/ctf/common
|
|
.PATH: ${SRCTOP}/cddl/contrib/opensolaris/tools/ctf/dump
|
|
|
|
PROG= ctfdump
|
|
SRCS= dump.c \
|
|
symbol.c \
|
|
utils.c
|
|
|
|
CFLAGS+= -I${OPENSOLARIS_USR_DISTDIR} \
|
|
-I${OPENSOLARIS_SYS_DISTDIR} \
|
|
-I${OPENSOLARIS_USR_DISTDIR}/head \
|
|
-I${OPENSOLARIS_USR_DISTDIR}/cmd/mdb/tools/common \
|
|
-I${SRCTOP}/sys/cddl/compat/opensolaris \
|
|
-I${SRCTOP}/cddl/compat/opensolaris/include \
|
|
-I${OPENSOLARIS_USR_DISTDIR}/tools/ctf/common \
|
|
-I${OPENSOLARIS_SYS_DISTDIR}/uts/common
|
|
|
|
LIBADD= elf z
|
|
|
|
.include <bsd.prog.mk>
|