blob: 59572fe2722a0c4da1420e2c5107de1f08596717 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $NetBSD: Makefile,v 1.27 2013/07/18 21:59:46 matt Exp $
.include <bsd.own.mk> # For MKPIC
.include <bsd.shlib.mk>
.include <bsd.endian.mk>
.if ${MKPIC} != "no" && \
((${MACHINE_CPU} == "arm" && ${TARGET_ENDIANNESS} == "1234") || \
${MACHINE_ARCH} == "i386" || \
${MACHINE_CPU} == "m68k" || \
${MACHINE_ARCH} == "sparc" || \
${MACHINE_ARCH} == "vax")
PROG= ldconfig
SRCS= ldconfig.c shlib.c
.if ${SHLIBINSTALLDIR} != ${LIBDIR}
CPPFLAGS+=-DSTANDARD_SEARCH_DIRS=\"${SHLIBINSTALLDIR}\",\"${LIBDIR}\"
.endif
.endif
MAN= ldconfig.8
.include <bsd.prog.mk>
|