xref: /freebsd/cddl/lib/drti/Makefile (revision ebe86aacbec3ee6283865bae78f6a78fe683e165)
1ebe86aacSJohn Birrell# $FreeBSD$
2ebe86aacSJohn Birrell
3ebe86aacSJohn Birrell.include	"../../Makefile.inc"
4ebe86aacSJohn Birrell
5ebe86aacSJohn Birrell.PATH:		${OPENSOLARIS_USR_DISTDIR}/lib/libdtrace/common
6ebe86aacSJohn Birrell
7ebe86aacSJohn BirrellSRCS=		drti.c
8ebe86aacSJohn BirrellFILES=		${SRCS:R:S/$/.o/g}
9ebe86aacSJohn BirrellFILESOWN=	${LIBOWN}
10ebe86aacSJohn BirrellFILESGRP=	${LIBGRP}
11ebe86aacSJohn BirrellFILESMODE=	${LIBMODE}
12ebe86aacSJohn BirrellFILESDIR=	${LIBDIR}/dtrace
13ebe86aacSJohn BirrellWARNS?=		6
14ebe86aacSJohn BirrellCLEANFILES=	${FILES}
15ebe86aacSJohn Birrell
16ebe86aacSJohn BirrellCFLAGS+=	-I${.CURDIR}/../../../sys/cddl/compat/opensolaris \
17ebe86aacSJohn Birrell		-I${.CURDIR}/../../../cddl/compat/opensolaris/include \
18ebe86aacSJohn Birrell		-I${OPENSOLARIS_USR_DISTDIR}/head \
19ebe86aacSJohn Birrell		-I${OPENSOLARIS_USR_DISTDIR}/lib/libctf/common \
20ebe86aacSJohn Birrell		-I${OPENSOLARIS_USR_DISTDIR}/lib/libdtrace/common \
21ebe86aacSJohn Birrell		-I${OPENSOLARIS_SYS_DISTDIR}/uts/common
22ebe86aacSJohn Birrell
23ebe86aacSJohn Birrell.include <bsd.prog.mk>
24