168ba1089a
not be installed in /usr/lib32 on systems with compat-32 support. This fix has two parts. First, the build is forced by linking drti.o into a dummy internal library. Second, the object file is installed manually in the LIBRARIES_ONLY case. MFC after: 3 days
30 lines
776 B
Makefile
30 lines
776 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/lib/libdtrace/common
|
|
|
|
SRCS= drti.c
|
|
FILES= ${SRCS:R:S/$/.o/g}
|
|
FILESOWN= ${LIBOWN}
|
|
FILESGRP= ${LIBGRP}
|
|
FILESMODE= ${LIBMODE}
|
|
FILESDIR= ${LIBDIR}/dtrace
|
|
CLEANFILES= ${FILES}
|
|
LIB= drti-dummy
|
|
INTERNALLIB=
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris \
|
|
-I${.CURDIR}/../../../cddl/compat/opensolaris/include \
|
|
-I${OPENSOLARIS_USR_DISTDIR}/head \
|
|
-I${OPENSOLARIS_USR_DISTDIR}/lib/libctf/common \
|
|
-I${OPENSOLARIS_USR_DISTDIR}/lib/libdtrace/common \
|
|
-I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
|
|
-DPIC ${PICFLAG}
|
|
|
|
.if make(install) && defined(LIBRARIES_ONLY)
|
|
install:
|
|
${INSTALL} -o ${FILESOWN} -g ${FILESGRP} -m ${FILESMODE} \
|
|
${FILES} ${DESTDIR}${FILESDIR}
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|