diff options
Diffstat (limited to 'cddl/usr.bin/ctfmerge/Makefile')
-rw-r--r-- | cddl/usr.bin/ctfmerge/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/cddl/usr.bin/ctfmerge/Makefile b/cddl/usr.bin/ctfmerge/Makefile new file mode 100644 index 0000000..ba4840e --- /dev/null +++ b/cddl/usr.bin/ctfmerge/Makefile @@ -0,0 +1,39 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/tools/ctf/common +.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/tools/ctf/cvt + +PROG= ctfmerge +SRCS= alist.c \ + barrier.c \ + ctf.c \ + ctfmerge.c \ + fifo.c \ + hash.c \ + iidesc.c \ + input.c \ + list.c \ + memory.c \ + merge.c \ + output.c \ + strtab.c \ + symbol.c \ + tdata.c \ + traverse.c \ + util.c + +WARNS?= 1 + +CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris \ + -I${.CURDIR}/../../../cddl/compat/opensolaris/include \ + -I${OPENSOLARIS_USR_DISTDIR} \ + -I${OPENSOLARIS_SYS_DISTDIR} \ + -I${OPENSOLARIS_USR_DISTDIR}/head \ + -I${OPENSOLARIS_USR_DISTDIR}/tools/ctf/common \ + -I${OPENSOLARIS_USR_DISTDIR}/tools/ctf/cvt \ + -I${OPENSOLARIS_SYS_DISTDIR}/uts/common + +DPADD= ${LIBCTF} ${LIBDWARF} ${LIBELF} ${LIBZ} ${LIBPTHREAD} +LDADD= -lctf -ldwarf -lelf -lz -lpthread + +.include <bsd.prog.mk> |