dtrace: Address KMSAN warnings in dtrace_disx86
[freebsd/src.git] / cddl / usr.bin / ctfmerge / Makefile
blob4cd9511f911c16aa22de203ab00443d63a8e1a8f
1 .PATH: ${SRCTOP}/cddl/contrib/opensolaris/tools/ctf/common
2 .PATH: ${SRCTOP}/cddl/contrib/opensolaris/tools/ctf/cvt
4 PACKAGE= ctf-tools
5 PROG= ctfmerge
6 SRCS= alist.c \
7 barrier.c \
8 ctf.c \
9 ctfmerge.c \
10 fifo.c \
11 hash.c \
12 iidesc.c \
13 input.c \
14 list.c \
15 memory.c \
16 merge.c \
17 output.c \
18 strtab.c \
19 symbol.c \
20 tdata.c \
21 traverse.c \
22 util.c
24 WARNS?= 1
27 CFLAGS+= -DIN_BASE
28 CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/include
29 CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/lib/libspl/include/
30 CFLAGS+= -I${SRCTOP}/sys/contrib/openzfs/lib/libspl/include/os/freebsd
31 CFLAGS+= -I${SRCTOP}/cddl/compat/opensolaris/include
32 CFLAGS+= -I${SRCTOP}/sys/cddl/compat/opensolaris \
33 -I${SRCTOP}/cddl/compat/opensolaris/include \
34 -I${OPENSOLARIS_USR_DISTDIR} \
35 -I${OPENSOLARIS_SYS_DISTDIR} \
36 -I${OPENSOLARIS_USR_DISTDIR}/head \
37 -I${OPENSOLARIS_USR_DISTDIR}/tools/ctf/common \
38 -I${OPENSOLARIS_USR_DISTDIR}/tools/ctf/cvt \
39 -I${OPENSOLARIS_SYS_DISTDIR}/uts/common
40 CFLAGS+= -DHAVE_ISSETUGID
42 LIBADD= spl elf z pthread
44 .include <bsd.prog.mk>