Makefile revision 1.24
1# $NetBSD: Makefile,v 1.24 2012/08/23 15:45:03 joerg Exp $ 2 3.include <bsd.own.mk> # For MKPIC 4.include <bsd.shlib.mk> 5 6.if ${MKPIC} != "no" && \ 7 (${MACHINE_ARCH} == "arm" || \ 8 ${MACHINE_ARCH} == "i386" || \ 9 ${MACHINE_ARCH} == "m68k" || \ 10 ${MACHINE_ARCH} == "sparc" || \ 11 ${MACHINE_ARCH} == "vax") 12 13PROG= ldconfig 14SRCS= ldconfig.c shlib.c 15 16.endif 17 18MAN= ldconfig.8 19 20.include <bsd.prog.mk> 21